Passed
Pull Request — master (#1201)
by
unknown
03:22
created
model/VocabularyConfig.php 1 patch
Braces   +16 added lines, -9 removed lines patch added patch discarded remove patch
@@ -52,8 +52,7 @@  discard block
 block discarded – undo
52 52
                 if ($plugin instanceof EasyRdf\Literal) {
53 53
                     $pluginName = $plugin->getValue();
54 54
                     array_push($pluginArray, $pluginName);
55
-                }
56
-                else {
55
+                } else {
57 56
                     array_push($pluginArray, $plugin->getLiteral('skosmos:usePlugin')->getValue());
58 57
                 }
59 58
             }
@@ -206,8 +205,9 @@  discard block
 block discarded – undo
206 205
     public function getShortName()
207 206
     {
208 207
         $shortname = $this->getLiteral('skosmos:shortName');
209
-        if ($shortname)
210
-          return $shortname;
208
+        if ($shortname) {
209
+                  return $shortname;
210
+        }
211 211
 
212 212
         // if no shortname exists fall back to the id
213 213
         return $this->getId();
@@ -357,10 +357,12 @@  discard block
 block discarded – undo
357 357
         $ret = array();
358 358
         foreach ($resources as $res) {
359 359
             $prop = $res->getURI();
360
-            if (EasyRdf\RdfNamespace::shorten($prop) !== null) // shortening property labels if possible
360
+            if (EasyRdf\RdfNamespace::shorten($prop) !== null) {
361
+              // shortening property labels if possible
361 362
             {
362 363
                 $prop = EasyRdf\RdfNamespace::shorten($prop);
363 364
             }
365
+            }
364 366
 
365 367
             $ret[] = $prop;
366 368
         }
@@ -377,10 +379,12 @@  discard block
 block discarded – undo
377 379
         $resources = $this->resource->allResources("skosmos:hasMultiLingualProperty");
378 380
         foreach ($resources as $res) {
379 381
             $prop = $res->getURI();
380
-            if (EasyRdf\RdfNamespace::shorten($prop) !== null) // shortening property labels if possible
382
+            if (EasyRdf\RdfNamespace::shorten($prop) !== null) {
383
+              // shortening property labels if possible
381 384
             {
382 385
                 $prop = EasyRdf\RdfNamespace::shorten($prop);
383 386
             }
387
+            }
384 388
 
385 389
             if ($prop === $property) {
386 390
                 return true;
@@ -526,11 +530,12 @@  discard block
 block discarded – undo
526 530
     public function getId()
527 531
     {
528 532
         $uriparts = explode("#", $this->resource->getURI());
529
-        if (count($uriparts) != 1)
530
-        // hash namespace
533
+        if (count($uriparts) != 1) {
534
+                // hash namespace
531 535
         {
532 536
             return $uriparts[1];
533 537
         }
538
+        }
534 539
 
535 540
         // slash namespace
536 541
         $uriparts = explode("/", $this->resource->getURI());
@@ -558,10 +563,12 @@  discard block
 block discarded – undo
558 563
         $ret = array();
559 564
         foreach ($resources as $res) {
560 565
             $prop = $res->getURI();
561
-            if (EasyRdf\RdfNamespace::shorten($prop) !== null) // prefixing if possible
566
+            if (EasyRdf\RdfNamespace::shorten($prop) !== null) {
567
+              // prefixing if possible
562 568
             {
563 569
                 $prop = EasyRdf\RdfNamespace::shorten($prop);
564 570
             }
571
+            }
565 572
 
566 573
             $ret[] = $prop;
567 574
         }
Please login to merge, or discard this patch.