1 | <?php |
||
11 | class PropertyInfo { |
||
12 | |||
13 | private $propertyId; |
||
14 | private $pageTitle; |
||
15 | private $revisionId; |
||
16 | private $revisionTime; |
||
17 | private $propertyType; |
||
18 | |||
19 | /** |
||
20 | * @param string|int $numericPropertyId |
||
21 | * @param string $pageTitle |
||
22 | * @param string|int $revisionId |
||
23 | * @param string $revisionTime |
||
24 | * @param string $propertyType |
||
25 | */ |
||
26 | public function __construct( $numericPropertyId, $pageTitle, $revisionId, $revisionTime, $propertyType ) { |
||
33 | |||
34 | /** |
||
35 | * @return int |
||
36 | */ |
||
37 | public function getNumericPropertyId() { |
||
40 | |||
41 | /** |
||
42 | * @return string |
||
43 | */ |
||
44 | public function getPageTitle() { |
||
47 | |||
48 | /** |
||
49 | * @return int |
||
50 | */ |
||
51 | public function getRevisionId() { |
||
54 | |||
55 | /** |
||
56 | * @return string |
||
57 | */ |
||
58 | public function getRevisionTime() { |
||
61 | |||
62 | /** |
||
63 | * @return string |
||
64 | */ |
||
65 | public function getPropertyType() { |
||
68 | |||
69 | } |