Completed
Push — master ( e95bc8...7de3aa )
by Henri
03:04
created
model/Request.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,9 +167,11 @@
 block discarded – undo
167 167
      */
168 168
     public function setVocab($vocabid)
169 169
     {
170
-        if (strpos($vocabid, ' ') !== false) // if there are multiple vocabularies just storing the string
170
+        if (strpos($vocabid, ' ') !== false) {
171
+          // if there are multiple vocabularies just storing the string
171 172
         {
172 173
             $this->setVocabids($vocabid);
174
+        }
173 175
         } else {
174 176
             $this->vocab = $this->model->getVocabulary($vocabid);
175 177
         }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
 
107 107
     public function getRequestUri()
108 108
     {
109
-        return $this->getServerConstant('HTTP_HOST') . $this->getServerConstant('REQUEST_URI');
109
+        return $this->getServerConstant('HTTP_HOST').$this->getServerConstant('REQUEST_URI');
110 110
     }
111 111
     
112 112
     /**
Please login to merge, or discard this patch.
model/ConceptPropertyValueLiteral.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
                 return Punic\Calendar::formatDate($val, 'short');
45 45
             } catch (Exception $e) {
46 46
                 trigger_error($e->getMessage(), E_USER_WARNING);
47
-                return (string) $this->literal;
47
+                return (string)$this->literal;
48 48
             }
49 49
         }
50 50
         return $this->literal->getValue();
Please login to merge, or discard this patch.
model/Vocabulary.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,10 +76,12 @@
 block discarded – undo
76 76
      */
77 77
     public function getUriSpace()
78 78
     {
79
-        if ($this->urispace === null) // initialize cache
79
+        if ($this->urispace === null) {
80
+          // initialize cache
80 81
         {
81 82
             $this->urispace = $this->resource->getLiteral('void:uriSpace')->getValue();
82 83
         }
84
+        }
83 85
 
84 86
         return $this->urispace;
85 87
     }
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
             return $lname;
98 98
         }
99 99
         // already a full URI
100
-        return $this->getUriSpace() . $lname;
100
+        return $this->getUriSpace().$lname;
101 101
     }
102 102
 
103 103
     /**
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
                 $prop = (substr($prop, 0, 5) == 'dc11:') ? str_replace('dc11:', 'dc:', $prop) : $prop;
160 160
                     $value = $val->getValue();
161 161
                     if ($value instanceof DateTime) {
162
-                        $val = Punic\Calendar::formatDate($value, 'full', $lang) . ' ' . Punic\Calendar::format($value, 'HH:mm:ss', $lang);
162
+                        $val = Punic\Calendar::formatDate($value, 'full', $lang).' '.Punic\Calendar::format($value, 'HH:mm:ss', $lang);
163 163
                     }
164 164
                     $ret[$prop][] = $val;
165 165
                 }
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
         }
271 271
         // don't know how to parse
272 272
         $rev = $parts[2];
273
-        $datestr = $parts[3] . ' ' . $parts[4];
273
+        $datestr = $parts[3].' '.$parts[4];
274 274
 
275 275
         return "$datestr (r$rev)";
276 276
     }
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
      * Counts the statistics of the vocabulary.
280 280
      * @return array of the concept/group counts
281 281
      */
282
-    public function getStatistics($lang = '', $array=null, $group=null)
282
+    public function getStatistics($lang = '', $array = null, $group = null)
283 283
     {
284 284
         $sparql = $this->getSparql();
285 285
         // find the number of concepts
@@ -595,14 +595,14 @@  discard block
 block discarded – undo
595 595
     {
596 596
       $changelist = $this->getSparql()->queryChangeList($clang, $offset, $prop);
597 597
       $bydate = array();
598
-      foreach($changelist as $concept) {
598
+      foreach ($changelist as $concept) {
599 599
         $concept['datestring'] = Punic\Calendar::formatDate($concept['date'], 'medium', $lang);
600
-        $bydate[Punic\Calendar::getMonthName($concept['date'], 'wide', $lang, true) . Punic\Calendar::format($concept['date'], ' y', $lang) ][strtolower($concept['prefLabel'])] = $concept;
600
+        $bydate[Punic\Calendar::getMonthName($concept['date'], 'wide', $lang, true).Punic\Calendar::format($concept['date'], ' y', $lang)][strtolower($concept['prefLabel'])] = $concept;
601 601
       }
602 602
       return $bydate;
603 603
     }
604 604
 
605
-    public function getTitle($lang=null) {
605
+    public function getTitle($lang = null) {
606 606
       return $this->config->getTitle($lang);
607 607
     }
608 608
     
Please login to merge, or discard this patch.
model/ConceptSearchParameters.php 2 patches
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,8 +67,9 @@
 block discarded – undo
67 67
     public function getSearchTerm() 
68 68
     {
69 69
         $term = $this->request->getQueryParam('q') ? $this->request->getQueryParam('q') : $this->request->getQueryParam('query');
70
-        if (!$term && $this->rest)
71
-            $term = $this->request->getQueryParam('label');
70
+        if (!$term && $this->rest) {
71
+                    $term = $this->request->getQueryParam('label');
72
+        }
72 73
         $term = trim($term); // surrounding whitespace is not considered significant
73 74
         return strpos($term, "*") === false ? $term . "*" : $term; // default to prefix search
74 75
     }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
         if ($this->rest) {
82 82
             return $term;
83 83
         }
84
-        return strpos($term, "*") === false ? $term . "*" : $term; // default to prefix search
84
+        return strpos($term, "*") === false ? $term."*" : $term; // default to prefix search
85 85
     }
86 86
     
87 87
     public function getContentLang() 
Please login to merge, or discard this patch.
model/DataObject.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,10 +68,12 @@
 block discarded – undo
68 68
         if ($sortable !== null) {
69 69
             uksort($sortable, array($this, 'mycompare'));
70 70
             foreach ($sortable as $prop => $vals) {
71
-                if (is_array($prop)) // the ConceptProperty objects have their own sorting methods
71
+                if (is_array($prop)) {
72
+                  // the ConceptProperty objects have their own sorting methods
72 73
                 {
73 74
                     ksort($sortable[$prop]);
74 75
                 }
76
+                }
75 77
 
76 78
             }
77 79
         }
Please login to merge, or discard this patch.
controller/RestController.php 2 patches
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -407,7 +407,9 @@  discard block
 block discarded – undo
407 407
                 $hits[] = $res;
408 408
             }
409 409
         }
410
-        if (sizeof($hits) > 0) return $hits;
410
+        if (sizeof($hits) > 0) {
411
+          return $hits;
412
+        }
411 413
 
412 414
         // case 2: case-insensitive match on preferred label
413 415
         foreach ($results as $res) {
@@ -415,7 +417,9 @@  discard block
 block discarded – undo
415 417
                 $hits[] = $res;
416 418
             }
417 419
         }
418
-        if (sizeof($hits) > 0) return $hits;
420
+        if (sizeof($hits) > 0) {
421
+          return $hits;
422
+        }
419 423
 
420 424
         // case 3: exact match on alternate label
421 425
         foreach ($results as $res) {
@@ -423,7 +427,9 @@  discard block
 block discarded – undo
423 427
                 $hits[] = $res;
424 428
             }
425 429
         }
426
-        if (sizeof($hits) > 0) return $hits;
430
+        if (sizeof($hits) > 0) {
431
+          return $hits;
432
+        }
427 433
 
428 434
 
429 435
         // case 4: case-insensitive match on alternate label
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
         // wrap with JSONP callback if requested
44 44
         if (filter_input(INPUT_GET, 'callback', FILTER_SANITIZE_STRING)) {
45 45
             header("Content-type: application/javascript; charset=utf-8");
46
-            echo filter_input(INPUT_GET, 'callback', FILTER_UNSAFE_RAW) . "(" . json_encode($data) . ");";
46
+            echo filter_input(INPUT_GET, 'callback', FILTER_UNSAFE_RAW)."(".json_encode($data).");";
47 47
             return;
48 48
         }
49 49
         
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
         // convert to vocids array to support multi-vocabulary search
123 123
         $vocids = ($vocabs !== null && $vocabs !== '') ? explode(' ', $vocabs) : array();
124 124
         $vocabObjects = array();
125
-        foreach($vocids as $vocid) {
125
+        foreach ($vocids as $vocid) {
126 126
             $vocabObjects[] = $this->model->getVocabulary($vocid);
127 127
         }
128 128
         $parameters->setVocabularies($vocabObjects);
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
         if ($request->getQueryParam('labellang')) {
169 169
             $ret['@context']['@language'] = $request->getQueryParam('labellang');
170 170
         } elseif ($request->getQueryParam('lang')) {
171
-            $ret['@context']['@language'] = $request->getQueryParam('lang');;
171
+            $ret['@context']['@language'] = $request->getQueryParam('lang'); ;
172 172
         }
173 173
         return $ret;
174 174
     }
@@ -513,10 +513,10 @@  discard block
 block discarded – undo
513 513
 
514 514
         $format = $this->negotiateFormat(array_keys($urls), $request->getServerConstant('HTTP_ACCEPT'), $request->getQueryParam('format'));
515 515
         if (!$format) {
516
-            return $this->returnError(406, 'Not Acceptable', "Unsupported format. Supported MIME types are: " . implode(' ', array_keys($urls)));
516
+            return $this->returnError(406, 'Not Acceptable', "Unsupported format. Supported MIME types are: ".implode(' ', array_keys($urls)));
517 517
         }
518 518
 
519
-        header("Location: " . $urls[$format]);
519
+        header("Location: ".$urls[$format]);
520 520
     }
521 521
     
522 522
     private function returnDataResults($results, $format) {
@@ -570,7 +570,7 @@  discard block
 block discarded – undo
570 570
 
571 571
         $format = $this->negotiateFormat(explode(' ', self::SUPPORTED_FORMATS), $request->getServerConstant('HTTP_ACCEPT'), $request->getQueryParam('format'));
572 572
         if (!$format) {
573
-            return $this->returnError(406, 'Not Acceptable', "Unsupported format. Supported MIME types are: " . self::SUPPORTED_FORMATS);
573
+            return $this->returnError(406, 'Not Acceptable', "Unsupported format. Supported MIME types are: ".self::SUPPORTED_FORMATS);
574 574
         }
575 575
 
576 576
         $vocid = $vocab ? $vocab->getId() : null;
Please login to merge, or discard this patch.
index.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     }
15 15
     require_once 'vendor/autoload.php';
16 16
 } catch (Exception $e) {
17
-    echo "Error: " . $e->getMessage();
17
+    echo "Error: ".$e->getMessage();
18 18
     return;
19 19
 }
20 20
 
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     // if language code missing, redirect to guessed language
33 33
     // in any case, redirect to <lang>/
34 34
     $lang = sizeof($parts) == 2 && $parts[1] !== '' ? $parts[1] : $controller->guessLanguage();
35
-    header("Location: " . $lang . "/");
35
+    header("Location: ".$lang."/");
36 36
 } else {
37 37
   if (array_key_exists($parts[1], $config->getLanguages())) { // global pages
38 38
         $request->setLang($parts[1]);
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         }
62 62
         if (sizeof($parts) == 3) { // language code missing
63 63
             $lang = $controller->guessLanguage();
64
-            header("Location: " . $lang . "/");
64
+            header("Location: ".$lang."/");
65 65
         } else {
66 66
             if (array_key_exists($parts[2], $config->getLanguages())) {
67 67
                 $lang = $parts[2];
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
                 }
103 103
             } else { // language code missing, redirect to some language version
104 104
                 $lang = $controller->guessLanguage($vocab);
105
-                $pattern = '|' . preg_quote("/$vocab/") . '|';
105
+                $pattern = '|'.preg_quote("/$vocab/").'|';
106 106
                 $location = preg_replace($pattern, "/$vocab/$lang/", $request->getServerConstant('REQUEST_URI'), 1);
107 107
                 header("Location: $location");
108 108
             }
Please login to merge, or discard this patch.
rest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     } elseif ($parts[1] == 'data') {
38 38
         $controller->data($request);
39 39
     } elseif (sizeof($parts) == 2) {
40
-        header("Location: " . $parts[1] . "/");
40
+        header("Location: ".$parts[1]."/");
41 41
     } else {
42 42
         $vocab = $parts[1];
43 43
         try {
@@ -93,5 +93,5 @@  discard block
 block discarded – undo
93 93
     }
94 94
 } catch (Exception $e) {
95 95
     header("HTTP/1.0 500 Internal Server Error");
96
-    echo('ERROR: ' . $e->getMessage());
96
+    echo('ERROR: '.$e->getMessage());
97 97
 }
Please login to merge, or discard this patch.
model/Concept.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -118,12 +118,12 @@  discard block
 block discarded – undo
118 118
         // 3. label in any language
119 119
         $label = $this->resource->label();
120 120
         // if the label lang code is a subset of the ui lang eg. en-GB
121
-        if ($label !== null && strpos($label->getLang(), $this->getEnvLang() . '-') === 0) {
121
+        if ($label !== null && strpos($label->getLang(), $this->getEnvLang().'-') === 0) {
122 122
             return $label->getValue();
123 123
         }
124 124
 
125 125
         if ($label !== null) {
126
-            return $label->getValue() . " (" . $label->getLang() . ")";
126
+            return $label->getValue()." (".$label->getLang().")";
127 127
         }
128 128
 
129 129
         // empty
@@ -448,14 +448,14 @@  discard block
 block discarded – undo
448 448
 
449 449
             // making a human readable string from the timestamps
450 450
             if ($created != '') {
451
-                $ret = gettext('skosmos:created') . ' ' . (Punic\Calendar::formatDate($created, 'short'));
451
+                $ret = gettext('skosmos:created').' '.(Punic\Calendar::formatDate($created, 'short'));
452 452
             }
453 453
 
454 454
             if ($modified != '') {
455 455
                 if ($created != '') {
456
-                    $ret .= ', ' . gettext('skosmos:modified') . ' ' . (Punic\Calendar::formatDate($modified, 'short'));
456
+                    $ret .= ', '.gettext('skosmos:modified').' '.(Punic\Calendar::formatDate($modified, 'short'));
457 457
                 } else {
458
-                    $ret .= ' ' . ucfirst(gettext('skosmos:modified')) . ' ' . (Punic\Calendar::formatDate($modified, 'short'));
458
+                    $ret .= ' '.ucfirst(gettext('skosmos:modified')).' '.(Punic\Calendar::formatDate($modified, 'short'));
459 459
                 }
460 460
 
461 461
             }
@@ -463,12 +463,12 @@  discard block
 block discarded – undo
463 463
             trigger_error($e->getMessage(), E_USER_WARNING);
464 464
             $ret = '';
465 465
             if ($this->resource->get('dc:modified')) {
466
-                $modified = (string) $this->resource->get('dc:modified');
467
-                $ret = gettext('skosmos:modified') . ' ' . $modified; 
466
+                $modified = (string)$this->resource->get('dc:modified');
467
+                $ret = gettext('skosmos:modified').' '.$modified; 
468 468
             }
469 469
             if ($this->resource->get('dc:created')) {
470
-                $created .= (string) $this->resource->get('dc:created');
471
-                $ret .= ' ' . gettext('skosmos:created') . ' ' . $created; 
470
+                $created .= (string)$this->resource->get('dc:created');
471
+                $ret .= ' '.gettext('skosmos:created').' '.$created; 
472 472
             }
473 473
         }
474 474
         return $ret;
@@ -555,7 +555,7 @@  discard block
 block discarded – undo
555 555
         $labels = array();
556 556
         foreach ($this->resource->allLiterals('skos:prefLabel') as $lit) {
557 557
             // filtering away subsets of the current language eg. en vs en-GB
558
-            if ($lit->getLang() != $this->clang && strpos($lit->getLang(), $this->getEnvLang() . '-') !== 0) {
558
+            if ($lit->getLang() != $this->clang && strpos($lit->getLang(), $this->getEnvLang().'-') !== 0) {
559 559
                 $langName = Punic\Language::getName($lit->getLang(), $this->getEnvLang()) !== $lit->getLang() ? Punic\Language::getName($lit->getLang(), $this->getEnvLang()) : gettext($lit->getLang());
560 560
                 $labels[$langName][] = new ConceptPropertyValueLiteral($lit, 'skos:prefLabel');
561 561
             }
@@ -563,7 +563,7 @@  discard block
 block discarded – undo
563 563
         }
564 564
         foreach ($this->resource->allLiterals('skos:altLabel') as $lit) {
565 565
             // filtering away subsets of the current language eg. en vs en-GB
566
-            if ($lit->getLang() != $this->clang && strpos($lit->getLang(), $this->getEnvLang() . '-') !== 0) {
566
+            if ($lit->getLang() != $this->clang && strpos($lit->getLang(), $this->getEnvLang().'-') !== 0) {
567 567
                 $langName = Punic\Language::getName($lit->getLang(), $this->getEnvLang()) ? Punic\Language::getName($lit->getLang(), $this->getEnvLang()) : gettext($lit->getLang());
568 568
                 $labels[$langName][] = new ConceptPropertyValueLiteral($lit, 'skos:altLabel');
569 569
             }
Please login to merge, or discard this patch.