| 1 | <?php |
||
| 21 | class ProjectDailySummarySubscriber extends BaseSubscriber implements EventSubscriberInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * Get event listeners. |
||
| 25 | * |
||
| 26 | * @static |
||
| 27 | * |
||
| 28 | * @return array |
||
| 29 | */ |
||
| 30 | public static function getSubscribedEvents() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Handle the event. |
||
| 43 | * |
||
| 44 | * @param TaskEvent $event |
||
| 45 | */ |
||
| 46 | public function execute(TaskEvent $event) |
||
| 51 | } |
||
| 52 |
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.