Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
49 | public function getEntity() |
||
50 | { |
||
51 | $unit = $this->unit->getEntity(); |
||
|
|||
52 | $currency = $this->currency->getEntity(); |
||
53 | |||
54 | return Entity::create([ |
||
55 | 'id' => $this->obj_id, |
||
56 | 'target' => $this->target->getEntity(), |
||
57 | 'type' => $this->type->getEntity(), |
||
58 | 'prepaid' => Quantity::create($unit, $this->quantity), |
||
59 | 'price' => new Money($this->price, $currency), |
||
60 | ]); |
||
61 | } |
||
62 | } |
||
63 |
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.