@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | { |
37 | 37 | $label = $this->getLabel(); |
38 | 38 | $notation = $this->getNotation(); |
39 | - return $notation . $label; |
|
39 | + return $notation.$label; |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | public function getType() |
@@ -178,14 +178,14 @@ discard block |
||
178 | 178 | 'from' => [ |
179 | 179 | 'memberSet' => [ |
180 | 180 | [ |
181 | - 'uri' => (string) $this->source->getUri(), |
|
181 | + 'uri' => (string)$this->source->getUri(), |
|
182 | 182 | ] |
183 | 183 | ] |
184 | 184 | ], |
185 | 185 | 'to' => [ |
186 | 186 | 'memberSet' => [ |
187 | 187 | [ |
188 | - 'uri' => (string) $this->getUri() |
|
188 | + 'uri' => (string)$this->getUri() |
|
189 | 189 | ] |
190 | 190 | ] |
191 | 191 | ] |
@@ -194,20 +194,20 @@ discard block |
||
194 | 194 | $fromScheme = $this->vocab->getDefaultConceptScheme(); |
195 | 195 | if (isset($fromScheme)) { |
196 | 196 | $ret['fromScheme'] = [ |
197 | - 'uri' => (string) $fromScheme, |
|
197 | + 'uri' => (string)$fromScheme, |
|
198 | 198 | ]; |
199 | 199 | } |
200 | 200 | |
201 | 201 | $exvocab = $this->getExvocab(); |
202 | 202 | if (isset($exvocab)) { |
203 | 203 | $ret['toScheme'] = [ |
204 | - 'uri' => (string) $exvocab->getDefaultConceptScheme(), |
|
204 | + 'uri' => (string)$exvocab->getDefaultConceptScheme(), |
|
205 | 205 | ]; |
206 | 206 | } |
207 | 207 | |
208 | 208 | $notation = $this->getNotation(); |
209 | 209 | if (isset($notation)) { |
210 | - $ret['to']['memberSet'][0]['notation'] = (string) $notation; |
|
210 | + $ret['to']['memberSet'][0]['notation'] = (string)$notation; |
|
211 | 211 | } |
212 | 212 | |
213 | 213 | $label = $this->getLabel(null, $queryExVocabs); |