| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 44 | { |
||
| 45 | $projects = $this->projectModel->getAllByStatus(ProjectModel::ACTIVE); |
||
|
|
|||
| 46 | |||
| 47 | foreach ($projects as $project) { |
||
| 48 | $output->writeln('Run calculation for '.$project['name']); |
||
| 49 | $this->projectDailyColumnStatsModel->updateTotals($project['id'], date('Y-m-d')); |
||
| 50 | $this->projectDailyStatsModel->updateTotals($project['id'], date('Y-m-d')); |
||
| 51 | } |
||
| 52 | } |
||
| 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.