| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 31 | public function transform(Alerts $alerts) |
||
| 32 | { |
||
| 33 | return [ |
||
| 34 | 'id' => (int)$alerts->id, |
||
|
|
|||
| 35 | 'device_id' => $alerts->device_id, |
||
| 36 | 'rule_id' => $alerts->rule_id, |
||
| 37 | 'state' => $alerts->state, |
||
| 38 | 'alerted' => $alerts->alerted, |
||
| 39 | 'open' => $alerts->open, |
||
| 40 | 'timestamp' => $alerts->timestamp, |
||
| 41 | ]; |
||
| 42 | } |
||
| 43 | } |
||
| 44 |
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.