| 1 | <?php | ||
| 5 | class PropertyReference implements ReferenceInterface | ||
| 6 | { | ||
| 7 | /** | ||
| 8 | * @var string | ||
| 9 | */ | ||
| 10 | private $property; | ||
| 11 | |||
| 12 | /** | ||
| 13 | * @param string $property | ||
| 14 | */ | ||
| 15 | 6 | public function __construct($property) | |
| 19 | |||
| 20 | 2 | public function getValue($instance) | |
| 31 | |||
| 32 | 2 | public function setValue($instance, $value) | |
| 45 | } | ||
| 46 |