| 1 | <?php |
||
| 17 | class ProjectMetricJob extends BaseJob |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Set job parameters. |
||
| 21 | * |
||
| 22 | * @param int $projectId |
||
| 23 | * |
||
| 24 | * @return $this |
||
| 25 | */ |
||
| 26 | public function withParams($projectId) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Execute job. |
||
| 35 | * |
||
| 36 | * @param int $projectId |
||
| 37 | */ |
||
| 38 | public function execute($projectId) |
||
| 46 | } |
||
| 47 |
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.