1 | <?php |
||
14 | class FileSystemCommandsLoader implements CommandsLoaderInterface { |
||
15 | |||
16 | /** |
||
17 | * @var Finder |
||
18 | */ |
||
19 | private $filesFinder; |
||
20 | |||
21 | /** |
||
22 | * @var NameResolverInterface |
||
23 | */ |
||
24 | private $commandNameResolver; |
||
25 | |||
26 | |||
27 | /** |
||
28 | * @param Finder $filesFinder |
||
29 | * @param NameResolverInterface $commandNameResolver |
||
30 | */ |
||
31 | public function __construct(Finder $filesFinder, NameResolverInterface $commandNameResolver) { |
||
35 | |||
36 | |||
37 | /** |
||
38 | * @param Application $app |
||
39 | */ |
||
40 | public function loadCommands(Application $app) { |
||
68 | |||
69 | |||
70 | } |