Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
| 1 | <?php |
||
| 21 | class ServerRenewPurchase extends AbstractServerPurchase |
||
| 22 | { |
||
| 23 | use ModelTrait; |
||
| 24 | |||
| 25 | /** {@inheritdoc} */ |
||
| 26 | public static function operation() |
||
| 30 | |||
| 31 | /** {@inheritdoc} */ |
||
| 32 | public function init() |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @var string domain expiration datetime |
||
| 42 | */ |
||
| 43 | public $expires; |
||
| 44 | |||
| 45 | View Code Duplication | public function rules() |
|
| 52 | } |
||
| 53 |
Since your code implements the magic setter
_set, this function will be called for any write access on an undefined variable. You can add the@propertyannotation to your class or interface to document the existence of this variable.Since the property has write access only, you can use the @property-write 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.