9 lines
209 B
PHP
9 lines
209 B
PHP
<?php
|
|
use Psr\Container\ContainerInterface as Container;
|
|
|
|
return [
|
|
Symfony\Component\Filesystem\Filesystem::class => function(Container $c) {
|
|
return new Symfony\Component\Filesystem\Filesystem();
|
|
}
|
|
];
|