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