Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | protected function execute(InputInterface $input, OutputInterface $output) |
||
34 | { |
||
35 | $config = Config::getInstance($this->configArray); |
||
36 | |||
37 | $creator = new DirectoryCreator($config); |
||
38 | |||
39 | $creator->create(); |
||
40 | |||
41 | foreach ($migrator->getLog() as $message) { |
||
|
|||
42 | $output->writeln($message); |
||
43 | } |
||
44 | } |
||
45 | } |
||
46 |
This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.