1 | <?php |
||
12 | trait SchemalessAttributesTrait |
||
13 | { |
||
14 | /** |
||
15 | * |
||
16 | */ |
||
17 | public function initializeSchemalessAttributesTrait() |
||
23 | |||
24 | /** |
||
25 | * @return array |
||
26 | */ |
||
27 | public function getSchemalessAttributes() |
||
28 | { |
||
29 | return $this->schemalessAttributes ? $this->schemalessAttributes : []; |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @param $key |
||
34 | * @return mixed|SchemalessAttributes |
||
35 | */ |
||
36 | public function __get($key) |
||
44 | } |
||
45 |
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@property
annotation 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.