| 1 | <?php |
||
| 13 | class DBGenerate extends YarakCommand |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Configure the command. |
||
| 17 | */ |
||
| 18 | protected function configure() |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Execute the command. |
||
| 29 | * |
||
| 30 | * @param InputInterface $input |
||
| 31 | * @param OutputInterface $output |
||
| 32 | */ |
||
| 33 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 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.