| 1 | <?php |
||
| 10 | class ObjectPathValue |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | protected $propertyName; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var mixed |
||
| 19 | */ |
||
| 20 | protected $propertyValue; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param $name |
||
| 24 | * @param $value |
||
| 25 | */ |
||
| 26 | public function __construct($name, $value) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | public function getPropertyName() |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return mixed |
||
| 42 | */ |
||
| 43 | public function getPropertyValue() |
||
| 47 | } |
||
| 48 |