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