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