| 1 | <?php |
||
| 18 | class CertificatePricePresenter extends PricePresenter |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var MoneyFormatter |
||
| 22 | */ |
||
| 23 | private $moneyFormatter; |
||
| 24 | |||
| 25 | public function __construct(MoneyFormatter $moneyFormatter) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param \hipanel\modules\finance\models\CertificatePrice $price |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | public function renderPrice(Price $price): string |
||
| 45 | } |
||
| 46 |
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.