Passed
Push — issue1801-heading-structure-fi... ( f7a83a )
by Osma
08:01
created
src/model/Vocabulary.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
             return $lname;
105 105
         }
106 106
         // already a full URI
107
-        return $this->getUriSpace() . $lname;
107
+        return $this->getUriSpace().$lname;
108 108
     }
109 109
 
110 110
     /**
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
             $result = $sparql->queryConceptScheme($defaultcs);
167 167
         } catch (EasyRdf\Http\Exception | EasyRdf\Exception | Throwable $e) {
168 168
             if ($this->model->getConfig()->getLogCaughtExceptions()) {
169
-                error_log('Caught exception: ' . $e->getMessage());
169
+                error_log('Caught exception: '.$e->getMessage());
170 170
             }
171 171
             return null;
172 172
         }
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
                 foreach ($conceptscheme->allLiterals($prop, null) as $val) {
200 200
                     $prop = (substr($prop, 0, 5) == 'dc11:') ? str_replace('dc11:', 'dc:', $prop) : $prop;
201 201
                     if ($val->getValue() instanceof DateTime) {
202
-                        $val = Punic\Calendar::formatDate($val->getValue(), 'full', $lang) . ' ' . Punic\Calendar::format($val->getValue(), 'HH:mm:ss', $lang);
202
+                        $val = Punic\Calendar::formatDate($val->getValue(), 'full', $lang).' '.Punic\Calendar::format($val->getValue(), 'HH:mm:ss', $lang);
203 203
                     }
204 204
                     $ret[$prop][] = $val;
205 205
                 }
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
             $conceptSchemes = $this->getSparql()->queryConceptSchemes($lang);
257 257
         } catch (EasyRdf\Http\Exception | EasyRdf\Exception | Throwable $e) {
258 258
             if ($this->model->getConfig()->getLogCaughtExceptions()) {
259
-                error_log('Caught exception: ' . $e->getMessage());
259
+                error_log('Caught exception: '.$e->getMessage());
260 260
             }
261 261
         }
262 262
         return $conceptSchemes;
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
         }
328 328
         // don't know how to parse
329 329
         $rev = $parts[2];
330
-        $datestr = $parts[3] . ' ' . $parts[4];
330
+        $datestr = $parts[3].' '.$parts[4];
331 331
 
332 332
         return "$datestr (r$rev)";
333 333
     }
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
             $conceptInfo = $sparql->queryConceptInfo([$uri], $this->config->getArrayClassURI(), array($this), $clang);
458 458
         } catch (EasyRdf\Http\Exception | EasyRdf\Exception | Throwable $e) {
459 459
             if ($this->model->getConfig()->getLogCaughtExceptions()) {
460
-                error_log('Caught exception: ' . $e->getMessage());
460
+                error_log('Caught exception: '.$e->getMessage());
461 461
             }
462 462
         }
463 463
         if (!$conceptInfo) {
Please login to merge, or discard this patch.