| 1 | <?php |
||
| 21 | class ProjectDailyStatsCalculationCommand extends BaseCommand |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * Configure the console command. |
||
| 25 | * |
||
| 26 | * @return void |
||
| 27 | */ |
||
| 28 | protected function configure() |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Execute the console command. |
||
| 37 | * |
||
| 38 | * @param InputInterface $output |
||
| 39 | * @param OutputInterface $output |
||
| 40 | * |
||
| 41 | * @return void |
||
| 42 | */ |
||
| 43 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 53 | } |
||
| 54 |
Since your code implements the magic getter
_get, this function will be called for any read access on an undefined variable. You can add the@propertyannotation to your class or interface to document the existence of this variable.If the property has read access only, you can use the @property-read annotation instead.
Of course, you may also just have mistyped another name, in which case you should fix the error.
See also the PhpDoc documentation for @property.