| 1 | <?php |
||
| 16 | class CopyContentSlot extends AbstractContentSlot |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @param \eZ\Publish\Core\SignalSlot\Signal\ContentService\CopyContentSignal $signal |
||
| 20 | */ |
||
| 21 | protected function generateTags(Signal $signal) |
||
| 22 | { |
||
| 23 | return ['content-' . $signal->dstContentId, 'location-' . $signal->dstParentLocationId, 'path-' . $signal->dstParentLocationId]; |
||
| 24 | } |
||
| 25 | |||
| 26 | protected function supports(Signal $signal) |
||
| 30 | } |
||
| 31 |
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.