Completed
Pull Request — master (#803)
by Dan Michael O.
25:42
created
model/ConceptMappingPropertyValue.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
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()
@@ -173,14 +173,14 @@  discard block
 block discarded – undo
173 173
             'from' => [
174 174
                 'memberSet' => [
175 175
                     [
176
-                        'uri' => (string) $this->source->getUri(),
176
+                        'uri' => (string)$this->source->getUri(),
177 177
                     ]
178 178
                 ]
179 179
             ],
180 180
             'to' => [
181 181
                 'memberSet' => [
182 182
                     [
183
-                        'uri' => (string) $this->getUri()
183
+                        'uri' => (string)$this->getUri()
184 184
                     ]
185 185
                 ]
186 186
             ]
@@ -189,20 +189,20 @@  discard block
 block discarded – undo
189 189
         $fromScheme = $this->vocab->getDefaultConceptScheme();
190 190
         if (isset($fromScheme)) {
191 191
             $ret['fromScheme'] = [
192
-                'uri' => (string) $fromScheme,
192
+                'uri' => (string)$fromScheme,
193 193
             ];
194 194
         }
195 195
 
196 196
         $exvocab = $this->getExvocab();
197 197
         if (isset($exvocab)) {
198 198
             $ret['toScheme'] = [
199
-                'uri' => (string) $exvocab->getDefaultConceptScheme(),
199
+                'uri' => (string)$exvocab->getDefaultConceptScheme(),
200 200
             ];
201 201
         }
202 202
 
203 203
         $notation = $this->getNotation();
204 204
         if (isset($notation)) {
205
-            $ret['to']['memberSet'][0]['notation'] = (string) $notation;
205
+            $ret['to']['memberSet'][0]['notation'] = (string)$notation;
206 206
         }
207 207
 
208 208
         $label = $this->getLabel($queryExVocabs);
Please login to merge, or discard this patch.