1 | <?php |
||
10 | class CreateDirectoriesStep implements SymfifyStep |
||
11 | { |
||
12 | /** |
||
13 | * @var OutputInterface |
||
14 | */ |
||
15 | private $output; |
||
16 | |||
17 | private $dirs = ['var/cache', 'var/logs', 'web', 'src']; |
||
18 | |||
19 | 6 | public function __construct(OutputInterface $output) |
|
23 | |||
24 | 4 | public function __invoke() |
|
30 | |||
31 | /** |
||
32 | * @param string $path |
||
33 | */ |
||
34 | 4 | private function createDirectory($path) |
|
48 | } |
||
49 |