| 1 | <?php |
||
| 18 | class CommandDiscovererProvider implements CommandProviderInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | protected $dstDir; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var string |
||
| 27 | */ |
||
| 28 | protected $namespace; |
||
| 29 | |||
| 30 | public function __construct($namespace, $dstDir) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | public function provide(Application $app, ContainerInterface $container) |
||
| 56 | } |