1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace EveryPolitician\EveryPoliticianPopolo\Objects; |
4
|
|
|
|
5
|
|
|
class Organization extends PopoloObject |
6
|
|
|
{ |
7
|
|
|
protected $properties = [ |
8
|
|
|
'id', |
9
|
|
|
'name', |
10
|
|
|
'wikidata', |
11
|
|
|
'classification', |
12
|
|
|
'image', |
13
|
|
|
'foundingDate', |
14
|
|
|
'dissolutionDate', |
15
|
|
|
'seats', |
16
|
|
|
'otherNames', |
17
|
|
|
'identifiers', |
18
|
|
|
'links', |
19
|
|
|
]; |
20
|
|
|
|
21
|
3 |
|
public function __toString() |
22
|
|
|
{ |
23
|
3 |
|
return "<Organization: ".$this->name.">"; |
|
|
|
|
24
|
|
|
} |
25
|
|
|
|
26
|
48 |
|
protected function getId() |
27
|
|
|
{ |
28
|
48 |
|
return $this->arrGet($this->data, 'id'); |
29
|
|
|
} |
30
|
|
|
|
31
|
6 |
|
protected function getName() |
32
|
|
|
{ |
33
|
6 |
|
return $this->arrGet($this->data, 'name'); |
34
|
|
|
} |
35
|
|
|
|
36
|
6 |
|
protected function getWikidata() |
37
|
|
|
{ |
38
|
6 |
|
return $this->identifierValue('wikidata'); |
39
|
|
|
} |
40
|
|
|
|
41
|
3 |
|
protected function getClassification() |
42
|
|
|
{ |
43
|
3 |
|
return $this->arrGet($this->data, 'classification'); |
44
|
|
|
} |
45
|
|
|
|
46
|
3 |
|
protected function getImage() |
47
|
|
|
{ |
48
|
3 |
|
return $this->arrGet($this->data, 'image'); |
49
|
|
|
} |
50
|
|
|
|
51
|
3 |
|
protected function getFoundingDate() |
52
|
|
|
{ |
53
|
3 |
|
return $this->getDate('founding_date'); |
54
|
|
|
} |
55
|
3 |
|
protected function getDissolutionDate() |
56
|
|
|
{ |
57
|
3 |
|
return $this->getDate('dissolution_date'); |
58
|
|
|
} |
59
|
3 |
|
protected function getSeats() |
60
|
|
|
{ |
61
|
3 |
|
return $this->arrGet($this->data, 'seats'); |
62
|
|
|
} |
63
|
3 |
|
protected function getOtherNames() |
64
|
|
|
{ |
65
|
3 |
|
return $this->arrGet($this->data, 'other_names', []); |
66
|
|
|
} |
67
|
|
|
|
68
|
3 |
|
protected function getIdentifiers() |
69
|
|
|
{ |
70
|
3 |
|
return $this->getRelatedObjectArr('identifiers'); |
71
|
|
|
} |
72
|
|
|
|
73
|
3 |
|
protected function getLinks() |
74
|
|
|
{ |
75
|
3 |
|
return $this->getRelatedObjectArr('links'); |
76
|
|
|
} |
77
|
|
|
} |
78
|
|
|
|
Since your code implements the magic getter
_get
, this function will be called for any read access on an undefined variable. You can add the@property
annotation to your class or interface to document the existence of this variable.If the property has read access only, you can use the @property-read annotation instead.
Of course, you may also just have mistyped another name, in which case you should fix the error.
See also the PhpDoc documentation for @property.