1 | <?php |
||
8 | trait PropertyAccessTrait |
||
9 | { |
||
10 | protected static $reflectionComposite; |
||
11 | |||
12 | protected static function getReflectionComposite() |
||
26 | |||
27 | /** |
||
28 | * @var ConditionalPropertyAccessor |
||
29 | */ |
||
30 | protected $accessor; |
||
31 | |||
32 | public function __construct() |
||
36 | |||
37 | protected function initPropertyAccessTrait() |
||
45 | |||
46 | public function __get($property) |
||
50 | |||
51 | public function __set($property, $value) |
||
55 | } |
||
56 |