| Total Complexity | 3 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 28 | class WithMagicPropertiesBaseClass implements IStrictPropertiesContainer, IMagicPropertiesContainer |
||
| 29 | { |
||
| 30 | use PropertiesHandler; |
||
| 31 | |||
| 32 | public function __construct() |
||
| 33 | { |
||
| 34 | $this->baseProperty_ = 'base'; |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * |
||
| 39 | * @var string |
||
| 40 | */ |
||
| 41 | private $baseProperty_; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * |
||
| 45 | * |
||
| 46 | * @return string |
||
| 47 | */ |
||
| 48 | protected function getBaseProperty() : string |
||
| 51 | } |
||
| 52 | |||
| 53 | /** |
||
| 54 | * |
||
| 55 | * @param string $value |
||
| 56 | */ |
||
| 57 | protected function setBaseProperty(string $value) |
||
| 60 | } |
||
| 61 | |||
| 63 |