| 1 | <?php |
||
| 8 | class CreateDirectoriesStep implements SymfifyStep |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var OutputInterface |
||
| 12 | */ |
||
| 13 | private $output; |
||
| 14 | |||
| 15 | private $dirs = ['var/cache', 'var/logs', 'web', 'src']; |
||
| 16 | |||
| 17 | 6 | public function __construct(OutputInterface $output) |
|
| 21 | |||
| 22 | 4 | public function __invoke() |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @param string $path |
||
| 31 | */ |
||
| 32 | 4 | private function createDirectory($path) |
|
| 46 | } |