Passed
Pull Request — master (#1354)
by
unknown
04:04
created
controller/WebController.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -266,11 +266,17 @@
 block discarded – undo
266 266
         $envelopeSender = $this->model->getConfig()->getFeedbackEnvelopeSender();
267 267
         // determine the sender address of the message
268 268
         $sender = $this->model->getConfig()->getFeedbackSender();
269
-        if (empty($sender)) $sender = $envelopeSender;
270
-        if (empty($sender)) $sender = $this->model->getConfig()->getFeedbackAddress();
269
+        if (empty($sender)) {
270
+          $sender = $envelopeSender;
271
+        }
272
+        if (empty($sender)) {
273
+          $sender = $this->model->getConfig()->getFeedbackAddress();
274
+        }
271 275
 
272 276
         // determine sender name - default to "anonymous user" if not given by user
273
-        if (empty($fromName)) $fromName = "anonymous user";
277
+        if (empty($fromName)) {
278
+          $fromName = "anonymous user";
279
+        }
274 280
         $headers = $this->createFeedbackHeaders($fromName, $fromEmail, $toMail, $sender);
275 281
         $params = empty($envelopeSender) ? '' : "-f $envelopeSender";
276 282
         // adding some information about the user for debugging purposes.
Please login to merge, or discard this patch.
model/ConceptProperty.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -125,11 +125,9 @@  discard block
 block discarded – undo
125 125
                             return strcoll(strtolower($a->getLabel()), strtolower($b->getLabel()));
126 126
                         }
127 127
                         return 1;
128
-                    }
129
-                    else if ($bnot == null) {
128
+                    } else if ($bnot == null) {
130 129
                         return -1;
131
-                    }
132
-                    else {
130
+                    } else {
133 131
                         // assume that notations are unique, choose strategy
134 132
                         if ($this->sort_by_notation == "lexical") {
135 133
                             return strcoll($anot, $bnot);
@@ -138,8 +136,7 @@  discard block
 block discarded – undo
138 136
                         }
139 137
                     }
140 138
                 });
141
-            }
142
-            else {
139
+            } else {
143 140
                 uasort($this->values, function($a, $b) {
144 141
                     // assume that labels are unique
145 142
                     return strcoll(strtolower($a->getLabel()), strtolower($b->getLabel()));
Please login to merge, or discard this patch.
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
             foreach ($vocabularyPlugins as $plugin) {
53 53
                 if ($plugin instanceof EasyRdf\Literal) {
54 54
                     $pluginArray[] = $plugin->getValue();
55
-                }
56
-                else {
55
+                } else {
57 56
                     $pluginArray[] = $plugin->getLiteral('skosmos:usePlugin')->getValue();
58 57
                 }
59 58
             }
@@ -202,8 +201,9 @@  discard block
 block discarded – undo
202 201
     public function getShortName()
203 202
     {
204 203
         $shortname = $this->getLiteral('skosmos:shortName');
205
-        if ($shortname)
206
-          return $shortname;
204
+        if ($shortname) {
205
+                  return $shortname;
206
+        }
207 207
 
208 208
         // if no shortname exists fall back to the id
209 209
         return $this->getId();
@@ -353,10 +353,12 @@  discard block
 block discarded – undo
353 353
         $ret = array();
354 354
         foreach ($resources as $res) {
355 355
             $prop = $res->getURI();
356
-            if (EasyRdf\RdfNamespace::shorten($prop) !== null) // shortening property labels if possible
356
+            if (EasyRdf\RdfNamespace::shorten($prop) !== null) {
357
+              // shortening property labels if possible
357 358
             {
358 359
                 $prop = EasyRdf\RdfNamespace::shorten($prop);
359 360
             }
361
+            }
360 362
 
361 363
             $ret[] = $prop;
362 364
         }
@@ -373,10 +375,12 @@  discard block
 block discarded – undo
373 375
         $resources = $this->resource->allResources("skosmos:hasMultiLingualProperty");
374 376
         foreach ($resources as $res) {
375 377
             $prop = $res->getURI();
376
-            if (EasyRdf\RdfNamespace::shorten($prop) !== null) // shortening property labels if possible
378
+            if (EasyRdf\RdfNamespace::shorten($prop) !== null) {
379
+              // shortening property labels if possible
377 380
             {
378 381
                 $prop = EasyRdf\RdfNamespace::shorten($prop);
379 382
             }
383
+            }
380 384
 
381 385
             if ($prop === $property) {
382 386
                 return true;
@@ -514,11 +518,12 @@  discard block
 block discarded – undo
514 518
     public function getId()
515 519
     {
516 520
         $uriparts = explode("#", $this->resource->getURI());
517
-        if (count($uriparts) != 1)
518
-        // hash namespace
521
+        if (count($uriparts) != 1) {
522
+                // hash namespace
519 523
         {
520 524
             return $uriparts[1];
521 525
         }
526
+        }
522 527
 
523 528
         // slash namespace
524 529
         $uriparts = explode("/", $this->resource->getURI());
@@ -546,10 +551,12 @@  discard block
 block discarded – undo
546 551
         $ret = array();
547 552
         foreach ($resources as $res) {
548 553
             $prop = $res->getURI();
549
-            if (EasyRdf\RdfNamespace::shorten($prop) !== null) // prefixing if possible
554
+            if (EasyRdf\RdfNamespace::shorten($prop) !== null) {
555
+              // prefixing if possible
550 556
             {
551 557
                 $prop = EasyRdf\RdfNamespace::shorten($prop);
552 558
             }
559
+            }
553 560
 
554 561
             $ret[] = $prop;
555 562
         }
Please login to merge, or discard this patch.
model/ConceptSearchParameters.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,8 +68,9 @@
 block discarded – undo
68 68
     public function getSearchTerm() : string
69 69
     {
70 70
         $term = $this->request->getQueryParamRaw('q') !== null ? $this->request->getQueryParamRaw('q') : $this->request->getQueryParamRaw('query');
71
-        if ((!isset($term) || strlen(trim($term)) === 0) && $this->rest)
72
-            $term = $this->request->getQueryParamRaw('label');
71
+        if ((!isset($term) || strlen(trim($term)) === 0) && $this->rest) {
72
+                    $term = $this->request->getQueryParamRaw('label');
73
+        }
73 74
         $term = trim($term); // surrounding whitespace is not considered significant
74 75
         $term = Normalizer::normalize( $term, Normalizer::FORM_C ); //Normalize decomposed unicode characters #1184
75 76
         if ($this->rest) {
Please login to merge, or discard this patch.