Completed
Push — master ( 01abf8...56bab1 )
by Andy
02:13
created
src/Objects/Event.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -23,17 +23,17 @@  discard block
 block discarded – undo
23 23
 
24 24
     protected function getId()
25 25
     {
26
-         return $this->arrGet($this->data, 'id');
26
+            return $this->arrGet($this->data, 'id');
27 27
     }
28 28
 
29 29
     protected function getName()
30 30
     {
31
-         return $this->arrGet($this->data, 'name');
31
+            return $this->arrGet($this->data, 'name');
32 32
     }
33 33
 
34 34
     protected function getClassification()
35 35
     {
36
-         return $this->arrGet($this->data, 'classification');
36
+            return $this->arrGet($this->data, 'classification');
37 37
     }
38 38
 
39 39
     protected function getStartDate()
@@ -50,12 +50,12 @@  discard block
 block discarded – undo
50 50
 
51 51
     protected function getOrganizationId()
52 52
     {
53
-         return $this->arrGet($this->data, 'organization_id');
53
+            return $this->arrGet($this->data, 'organization_id');
54 54
     }
55 55
 
56 56
     protected function getOrganization()
57 57
     {
58
-         return $this->allPopolo->organizations->lookupFromKey[$this->organizationId];
58
+            return $this->allPopolo->organizations->lookupFromKey[$this->organizationId];
59 59
     }
60 60
 
61 61
     protected function getIdentifiers()
Please login to merge, or discard this patch.
src/Objects/Post.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,12 +18,12 @@
 block discarded – undo
18 18
 
19 19
     protected function getId()
20 20
     {
21
-         return $this->arrGet($this->data, 'id');
21
+            return $this->arrGet($this->data, 'id');
22 22
     }
23 23
 
24 24
     protected function getLabel()
25 25
     {
26
-         return $this->arrGet($this->data, 'label');
26
+            return $this->arrGet($this->data, 'label');
27 27
     }
28 28
 
29 29
     protected function getOrganizationId()
Please login to merge, or discard this patch.
src/Objects/Organization.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,12 +25,12 @@  discard block
 block discarded – undo
25 25
 
26 26
     protected function getId()
27 27
     {
28
-         return $this->arrGet($this->data, 'id');
28
+            return $this->arrGet($this->data, 'id');
29 29
     }
30 30
 
31 31
     protected function getName()
32 32
     {
33
-         return $this->arrGet($this->data, 'name');
33
+            return $this->arrGet($this->data, 'name');
34 34
     }
35 35
 
36 36
     protected function getWikidata()
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 
67 67
     protected function getIdentifiers()
68 68
     {
69
-         return $this->getRelatedObjectArr('identifiers');
69
+            return $this->getRelatedObjectArr('identifiers');
70 70
     }
71 71
 
72 72
     protected function getLinks()
Please login to merge, or discard this patch.
src/Objects/PopoloObject.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 
35 35
     protected function getKeyForHash()
36 36
     {
37
-         return $this->getId();
37
+            return $this->getId();
38 38
     }
39 39
 
40 40
     private function getRelatedObjects($popoloArray)
Please login to merge, or discard this patch.
src/Objects/Person.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -50,57 +50,57 @@  discard block
 block discarded – undo
50 50
 
51 51
     protected function getId()
52 52
     {
53
-         return $this->arrGet($this->data, 'id');
53
+            return $this->arrGet($this->data, 'id');
54 54
     }
55 55
 
56 56
     protected function getEmail()
57 57
     {
58
-         return $this->arrGet($this->data, 'email');
58
+            return $this->arrGet($this->data, 'email');
59 59
     }
60 60
 
61 61
     protected function getGender()
62 62
     {
63
-         return $this->arrGet($this->data, 'gender');
63
+            return $this->arrGet($this->data, 'gender');
64 64
     }
65 65
 
66 66
     protected function getHonorificPrefix()
67 67
     {
68
-         return $this->arrGet($this->data, 'honorific_prefix');
68
+            return $this->arrGet($this->data, 'honorific_prefix');
69 69
     }
70 70
 
71 71
     protected function getHonorificSuffix()
72 72
     {
73
-         return $this->arrGet($this->data, 'honorific_suffix');
73
+            return $this->arrGet($this->data, 'honorific_suffix');
74 74
     }
75 75
 
76 76
     protected function getImage()
77 77
     {
78
-         return $this->arrGet($this->data, 'image');
78
+            return $this->arrGet($this->data, 'image');
79 79
     }
80 80
 
81 81
     protected function getName()
82 82
     {
83
-         return $this->arrGet($this->data, 'name');
83
+            return $this->arrGet($this->data, 'name');
84 84
     }
85 85
 
86 86
     protected function getSortName()
87 87
     {
88
-         return $this->arrGet($this->data, 'sort_name');
88
+            return $this->arrGet($this->data, 'sort_name');
89 89
     }
90 90
 
91 91
     protected function getNationalIdentity()
92 92
     {
93
-         return $this->arrGet($this->data, 'national_identity');
93
+            return $this->arrGet($this->data, 'national_identity');
94 94
     }
95 95
 
96 96
     protected function getSummary()
97 97
     {
98
-         return $this->arrGet($this->data, 'summary');
98
+            return $this->arrGet($this->data, 'summary');
99 99
     }
100 100
 
101 101
     protected function getBiography()
102 102
     {
103
-         return $this->arrGet($this->data, 'biography');
103
+            return $this->arrGet($this->data, 'biography');
104 104
     }
105 105
 
106 106
     protected function getBirthDate()
@@ -115,12 +115,12 @@  discard block
 block discarded – undo
115 115
 
116 116
     protected function getFamilyName()
117 117
     {
118
-         return $this->arrGet($this->data, 'family_name');
118
+            return $this->arrGet($this->data, 'family_name');
119 119
     }
120 120
 
121 121
     protected function getGivenName()
122 122
     {
123
-         return $this->arrGet($this->data, 'given_name');
123
+            return $this->arrGet($this->data, 'given_name');
124 124
     }
125 125
 
126 126
     protected function getWikidata()
@@ -184,32 +184,32 @@  discard block
 block discarded – undo
184 184
 
185 185
     protected function getLinks()
186 186
     {
187
-         return $this->getRelatedObjectArr('links');
187
+            return $this->getRelatedObjectArr('links');
188 188
     }
189 189
 
190 190
     protected function getContactDetails()
191 191
     {
192
-         return $this->getRelatedObjectArr('contact_details');
192
+            return $this->getRelatedObjectArr('contact_details');
193 193
     }
194 194
 
195 195
     protected function getIdentifiers()
196 196
     {
197
-         return $this->getRelatedObjectArr('identifiers');
197
+            return $this->getRelatedObjectArr('identifiers');
198 198
     }
199 199
 
200 200
     protected function getImages()
201 201
     {
202
-         return $this->getRelatedObjectArr('images');
202
+            return $this->getRelatedObjectArr('images');
203 203
     }
204 204
 
205 205
     protected function getOtherNames()
206 206
     {
207
-         return $this->getRelatedObjectArr('other_names');
207
+            return $this->getRelatedObjectArr('other_names');
208 208
     }
209 209
 
210 210
     protected function getSources()
211 211
     {
212
-         return $this->getRelatedObjectArr('sources');
212
+            return $this->getRelatedObjectArr('sources');
213 213
     }
214 214
 
215 215
     protected function getMemberships()
Please login to merge, or discard this patch.
src/Objects/Area.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -20,27 +20,27 @@
 block discarded – undo
20 20
 
21 21
     protected function getId()
22 22
     {
23
-         return $this->arrGet($this->data, 'id');
23
+            return $this->arrGet($this->data, 'id');
24 24
     }
25 25
 
26 26
     protected function getName()
27 27
     {
28
-         return $this->arrGet($this->data, 'name');
28
+            return $this->arrGet($this->data, 'name');
29 29
     }
30 30
 
31 31
     protected function getType()
32 32
     {
33
-         return $this->arrGet($this->data, 'type');
33
+            return $this->arrGet($this->data, 'type');
34 34
     }
35 35
 
36 36
     protected function getIdentifiers()
37 37
     {
38
-         return $this->getRelatedObjectArr('identifiers');
38
+            return $this->getRelatedObjectArr('identifiers');
39 39
     }
40 40
 
41 41
     protected function getOtherNames()
42 42
     {
43
-         return $this->getRelatedObjectArr('other_names');
43
+            return $this->getRelatedObjectArr('other_names');
44 44
     }
45 45
 
46 46
     protected function getWikidata()
Please login to merge, or discard this patch.