OpenXE/classes/Components/Filesystem/Bootstrap.php
2021-05-21 08:49:41 +02:00

29 lines
580 B
PHP

<?php
namespace Xentral\Components\Filesystem;
use Xentral\Core\DependencyInjection\ContainerInterface;
final class Bootstrap
{
/**
* @return array
*/
public static function registerServices()
{
return [
'FilesystemFactory' => 'onInitFilesystemFactory',
];
}
/**
* @param ContainerInterface $container
*
* @return FilesystemFactory
*/
public static function onInitFilesystemFactory(ContainerInterface $container)
{
return new FilesystemFactory($container->get('Database'));
}
}