Passed
Pull Request — master (#1201)
by
unknown
03:52
created
model/VocabularyConfig.php 1 patch
Braces   +16 added lines, -9 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@  discard block
 block discarded – undo
53 53
             foreach ($vocabularyPlugins as $plugin) {
54 54
                 if ($plugin instanceof EasyRdf\Literal) {
55 55
                     $pluginArray[] = $plugin->getValue();
56
-                }
57
-                else if ($plugin instanceof EasyRdf\Resource) {
56
+                } else if ($plugin instanceof EasyRdf\Resource) {
58 57
                     $pluginArray[] = $plugin->getLiteral('skosmos:usePlugin')->getValue();
59 58
                 }
60 59
             }
@@ -203,8 +202,9 @@  discard block
 block discarded – undo
203 202
     public function getShortName()
204 203
     {
205 204
         $shortname = $this->getLiteral('skosmos:shortName');
206
-        if ($shortname)
207
-          return $shortname;
205
+        if ($shortname) {
206
+                  return $shortname;
207
+        }
208 208
 
209 209
         // if no shortname exists fall back to the id
210 210
         return $this->getId();
@@ -354,10 +354,12 @@  discard block
 block discarded – undo
354 354
         $ret = array();
355 355
         foreach ($resources as $res) {
356 356
             $prop = $res->getURI();
357
-            if (EasyRdf\RdfNamespace::shorten($prop) !== null) // shortening property labels if possible
357
+            if (EasyRdf\RdfNamespace::shorten($prop) !== null) {
358
+              // shortening property labels if possible
358 359
             {
359 360
                 $prop = EasyRdf\RdfNamespace::shorten($prop);
360 361
             }
362
+            }
361 363
 
362 364
             $ret[] = $prop;
363 365
         }
@@ -374,10 +376,12 @@  discard block
 block discarded – undo
374 376
         $resources = $this->resource->allResources("skosmos:hasMultiLingualProperty");
375 377
         foreach ($resources as $res) {
376 378
             $prop = $res->getURI();
377
-            if (EasyRdf\RdfNamespace::shorten($prop) !== null) // shortening property labels if possible
379
+            if (EasyRdf\RdfNamespace::shorten($prop) !== null) {
380
+              // shortening property labels if possible
378 381
             {
379 382
                 $prop = EasyRdf\RdfNamespace::shorten($prop);
380 383
             }
384
+            }
381 385
 
382 386
             if ($prop === $property) {
383 387
                 return true;
@@ -515,11 +519,12 @@  discard block
 block discarded – undo
515 519
     public function getId()
516 520
     {
517 521
         $uriparts = explode("#", $this->resource->getURI());
518
-        if (count($uriparts) != 1)
519
-        // hash namespace
522
+        if (count($uriparts) != 1) {
523
+                // hash namespace
520 524
         {
521 525
             return $uriparts[1];
522 526
         }
527
+        }
523 528
 
524 529
         // slash namespace
525 530
         $uriparts = explode("/", $this->resource->getURI());
@@ -547,10 +552,12 @@  discard block
 block discarded – undo
547 552
         $ret = array();
548 553
         foreach ($resources as $res) {
549 554
             $prop = $res->getURI();
550
-            if (EasyRdf\RdfNamespace::shorten($prop) !== null) // prefixing if possible
555
+            if (EasyRdf\RdfNamespace::shorten($prop) !== null) {
556
+              // prefixing if possible
551 557
             {
552 558
                 $prop = EasyRdf\RdfNamespace::shorten($prop);
553 559
             }
560
+            }
554 561
 
555 562
             $ret[] = $prop;
556 563
         }
Please login to merge, or discard this patch.