| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 27 | public function transform(Departments $department) |
||
| 28 | { |
||
| 29 | return [ |
||
| 30 | 'id' => (int) $department->id, |
||
|
|
|||
| 31 | 'name' => (string) $department->department_name, |
||
| 32 | 'managers' => (string) $department->department_manager, |
||
| 33 | 'description' => (string) $department->department_description |
||
| 34 | ]; |
||
| 35 | } |
||
| 36 | |||
| 48 | } |
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.