| 1 | <?php |
||
| 11 | class PropertyRow { |
||
| 12 | |||
| 13 | private $propertyJson; |
||
| 14 | private $propertyInfo; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param string $propertyJson |
||
| 18 | * @param PropertyInfo $info |
||
| 19 | */ |
||
| 20 | public function __construct( $propertyJson, PropertyInfo $info ) { |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | public function getPropertyJson() { |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return PropertyInfo |
||
| 34 | */ |
||
| 35 | public function getPropertyInfo() { |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return int |
||
| 41 | */ |
||
| 42 | public function getNumericPropertyId() { |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return string |
||
| 48 | */ |
||
| 49 | public function getPageTitle() { |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @return int |
||
| 55 | */ |
||
| 56 | public function getRevisionId() { |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @return string |
||
| 62 | */ |
||
| 63 | public function getRevisionTime() { |
||
| 66 | |||
| 67 | /** |
||
| 68 | * @return string |
||
| 69 | */ |
||
| 70 | public function getPropertyType() { |
||
| 73 | |||
| 74 | } |