| Total Complexity | 3 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | abstract class PlaisioKernel extends PlaisioObject |
||
| 10 | { |
||
| 11 | //-------------------------------------------------------------------------------------------------------------------- |
||
| 12 | /** |
||
| 13 | * PlaisioKernel constructor. |
||
| 14 | */ |
||
| 15 | 2 | public function __construct() |
|
| 20 | 2 | } |
|
| 21 | |||
| 22 | //-------------------------------------------------------------------------------------------------------------------- |
||
| 23 | /** |
||
| 24 | * Returns the value of a property. |
||
| 25 | * |
||
| 26 | * Do not call this method directly as it is a PHP magic method that |
||
| 27 | * will be implicitly called when executing `$value = $object->property;`. |
||
| 28 | * |
||
| 29 | * @param string $property The name of the property. |
||
| 30 | * |
||
| 31 | * @return mixed The value of the property. |
||
| 32 | * |
||
| 33 | * @throws \LogicException If the property is not defined. |
||
| 34 | */ |
||
| 35 | 2 | public function __get(string $property) |
|
| 50 |