Completed
Push — master ( 858968...6eab88 )
by Henri
03:37
created
model/Vocabulary.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
             return $lname;
93 93
         }
94 94
         // already a full URI
95
-        return $this->getUriSpace() . $lname;
95
+        return $this->getUriSpace().$lname;
96 96
     }
97 97
 
98 98
     /**
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
                 foreach ($conceptscheme->allLiterals($prop, null) as $val) {
154 154
                     $prop = (substr($prop, 0, 5) == 'dc11:') ? str_replace('dc11:', 'dc:', $prop) : $prop;
155 155
                     if ($val->getValue() instanceof DateTime) {
156
-                        $val = Punic\Calendar::formatDate($val->getValue(), 'full', $lang) . ' ' . Punic\Calendar::format($val->getValue(), 'HH:mm:ss', $lang);
156
+                        $val = Punic\Calendar::formatDate($val->getValue(), 'full', $lang).' '.Punic\Calendar::format($val->getValue(), 'HH:mm:ss', $lang);
157 157
                     }
158 158
                     $ret[$prop][] = $val;
159 159
                 }
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
         }
265 265
         // don't know how to parse
266 266
         $rev = $parts[2];
267
-        $datestr = $parts[3] . ' ' . $parts[4];
267
+        $datestr = $parts[3].' '.$parts[4];
268 268
 
269 269
         return "$datestr (r$rev)";
270 270
     }
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
      * Counts the statistics of the vocabulary.
274 274
      * @return array of the concept/group counts
275 275
      */
276
-    public function getStatistics($lang = '', $array=null, $group=null)
276
+    public function getStatistics($lang = '', $array = null, $group = null)
277 277
     {
278 278
         $sparql = $this->getSparql();
279 279
         // find the number of concepts
@@ -482,7 +482,7 @@  discard block
 block discarded – undo
482 482
      */
483 483
     public function searchConceptsAlphabetical($letter, $limit = null, $offset = null, $clang = null)
484 484
     {
485
-        return $this->getSparql()->queryConceptsAlphabetical($letter, $clang, $limit, $offset, $this->config->getIndexClasses(),$this->config->getShowDeprecated());
485
+        return $this->getSparql()->queryConceptsAlphabetical($letter, $clang, $limit, $offset, $this->config->getIndexClasses(), $this->config->getShowDeprecated());
486 486
     }
487 487
 
488 488
     /**
@@ -591,14 +591,14 @@  discard block
 block discarded – undo
591 591
     {
592 592
       $changelist = $this->getSparql()->queryChangeList($clang, $offset, $prop);
593 593
       $bydate = array();
594
-      foreach($changelist as $concept) {
594
+      foreach ($changelist as $concept) {
595 595
         $concept['datestring'] = Punic\Calendar::formatDate($concept['date'], 'medium', $lang);
596
-        $bydate[Punic\Calendar::getMonthName($concept['date'], 'wide', $lang, true) . Punic\Calendar::format($concept['date'], ' y', $lang) ][strtolower($concept['prefLabel'])] = $concept;
596
+        $bydate[Punic\Calendar::getMonthName($concept['date'], 'wide', $lang, true).Punic\Calendar::format($concept['date'], ' y', $lang)][strtolower($concept['prefLabel'])] = $concept;
597 597
       }
598 598
       return $bydate;
599 599
     }
600 600
 
601
-    public function getTitle($lang=null) {
601
+    public function getTitle($lang = null) {
602 602
       return $this->config->getTitle($lang);
603 603
     }
604 604
     
Please login to merge, or discard this patch.
controller/RestController.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
         // wrap with JSONP callback if requested
26 26
         if (filter_input(INPUT_GET, 'callback', FILTER_SANITIZE_STRING)) {
27 27
             header("Content-type: application/javascript; charset=utf-8");
28
-            echo filter_input(INPUT_GET, 'callback', FILTER_UNSAFE_RAW) . "(" . json_encode($data) . ");";
28
+            echo filter_input(INPUT_GET, 'callback', FILTER_UNSAFE_RAW)."(".json_encode($data).");";
29 29
             return;
30 30
         }
31 31
         
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
                 'vocabularies' => 'onki:hasVocabulary',
89 89
                 'id' => 'onki:vocabularyIdentifier',
90 90
                 'uri' => '@id',
91
-                '@base' => $this->getBaseHref() . "rest/v1/vocabularies",
91
+                '@base' => $this->getBaseHref()."rest/v1/vocabularies",
92 92
             ),
93 93
             'uri' => '',
94 94
             'vocabularies' => $results,
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
         // convert to vocids array to support multi-vocabulary search
106 106
         $vocids = ($vocabs !== null && $vocabs !== '') ? explode(' ', $vocabs) : array();
107 107
         $vocabObjects = array();
108
-        foreach($vocids as $vocid) {
108
+        foreach ($vocids as $vocid) {
109 109
             $vocabObjects[] = $this->model->getVocabulary($vocid);
110 110
         }
111 111
         $parameters->setVocabularies($vocabObjects);
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
         if ($request->getQueryParam('labellang')) {
145 145
             $ret['@context']['@language'] = $request->getQueryParam('labellang');
146 146
         } elseif ($request->getQueryParam('lang')) {
147
-            $ret['@context']['@language'] = $request->getQueryParam('lang');;
147
+            $ret['@context']['@language'] = $request->getQueryParam('lang'); ;
148 148
         }
149 149
         return $ret;
150 150
     }
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
                 'prefLabel' => 'skos:prefLabel',
214 214
                 'title' => 'dct:title',
215 215
                 '@language' => $request->getLang(),
216
-                '@base' => $this->getBaseHref() . "rest/v1/" . $vocab->getId() . "/",
216
+                '@base' => $this->getBaseHref()."rest/v1/".$vocab->getId()."/",
217 217
             ),
218 218
             'uri' => '',
219 219
             'id' => $vocab->getId(),
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
                 'subTypes' => array('@id' => 'void:class', '@type' => '@id'),
265 265
                 'count' => 'void:entities',
266 266
                 '@language' => $request->getLang(),
267
-                '@base' => $this->getBaseHref() . "rest/v1/" . $request->getVocab()->getId() . "/",
267
+                '@base' => $this->getBaseHref()."rest/v1/".$request->getVocab()->getId()."/",
268 268
             ),
269 269
             'uri' => '',
270 270
             'id' => $request->getVocab()->getId(),
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
                 'language' => 'void-ext:language',
339 339
                 'properties' => 'void:propertyPartition',
340 340
                 'labels' => 'void:triples',
341
-                '@base' => $this->getBaseHref() . "rest/v1/" . $request->getVocab()->getId() . "/",
341
+                '@base' => $this->getBaseHref()."rest/v1/".$request->getVocab()->getId()."/",
342 342
             ),
343 343
             'uri' => '',
344 344
             'id' => $request->getVocab()->getId(),
@@ -375,7 +375,7 @@  discard block
 block discarded – undo
375 375
             $types[] = $type;
376 376
         }
377 377
 
378
-        $base = $request->getVocab() ? $this->getBaseHref() . "rest/v1/" . $request->getVocab()->getId() . "/" : $this->getBaseHref() . "rest/v1/";
378
+        $base = $request->getVocab() ? $this->getBaseHref()."rest/v1/".$request->getVocab()->getId()."/" : $this->getBaseHref()."rest/v1/";
379 379
 
380 380
         $ret = array_merge_recursive($this->context, array(
381 381
             '@context' => array(
@@ -535,10 +535,10 @@  discard block
 block discarded – undo
535 535
 
536 536
         $format = $this->negotiateFormat(array_keys($urls), $request->getServerConstant('HTTP_ACCEPT'), $request->getQueryParam('format'));
537 537
         if (!$format) {
538
-            return $this->returnError(406, 'Not Acceptable', "Unsupported format. Supported MIME types are: " . implode(' ', array_keys($urls)));
538
+            return $this->returnError(406, 'Not Acceptable', "Unsupported format. Supported MIME types are: ".implode(' ', array_keys($urls)));
539 539
         }
540 540
 
541
-        header("Location: " . $urls[$format]);
541
+        header("Location: ".$urls[$format]);
542 542
     }
543 543
     
544 544
     private function returnDataResults($results, $format) {
@@ -593,7 +593,7 @@  discard block
 block discarded – undo
593 593
 
594 594
         $format = $this->negotiateFormat(explode(' ', self::SUPPORTED_FORMATS), $request->getServerConstant('HTTP_ACCEPT'), $request->getQueryParam('format'));
595 595
         if (!$format) {
596
-            return $this->returnError(406, 'Not Acceptable', "Unsupported format. Supported MIME types are: " . self::SUPPORTED_FORMATS);
596
+            return $this->returnError(406, 'Not Acceptable', "Unsupported format. Supported MIME types are: ".self::SUPPORTED_FORMATS);
597 597
         }
598 598
 
599 599
         $vocid = $vocab ? $vocab->getId() : null;
@@ -752,7 +752,7 @@  discard block
 block discarded – undo
752 752
                         }
753 753
                     }
754 754
                     // if the main concept scheme was not found, set 'top' to the first 'tops' (sorted alphabetically on the URIs)
755
-                    if (! isset($results[$uri]['top'])) {
755
+                    if (!isset($results[$uri]['top'])) {
756 756
                         $results[$uri]['top'] = $results[$uri]['tops'][0];
757 757
                     }
758 758
                 } else {
Please login to merge, or discard this patch.
model/sparql/JenaTextSparql.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
         // 1. Ensure characters with special meaning in Lucene are escaped
41 41
         $lucenemap = array();
42 42
         foreach (str_split(self::LUCENE_ESCAPE_CHARS) as $char) {
43
-            $lucenemap[$char] = '\\' . $char; // escape with a backslash
43
+            $lucenemap[$char] = '\\'.$char; // escape with a backslash
44 44
         }
45 45
         $term = strtr($term, $lucenemap);
46 46
 
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      * @return string sparql order by clause
83 83
      */
84 84
     private function formatOrderBy($expression, $lang) {
85
-        if(!$this->model->getConfig()->getCollationEnabled()) {
85
+        if (!$this->model->getConfig()->getCollationEnabled()) {
86 86
             return $expression;
87 87
         }
88 88
         $orderby = sprintf('arq:collation(\'%2$s\', %1$s)', $expression, $lang);
@@ -114,13 +114,13 @@  discard block
 block discarded – undo
114 114
 
115 115
         # make text query clause
116 116
         $lcletter = mb_strtolower($letter, 'UTF-8'); // convert to lower case, UTF-8 safe
117
-        $textcondPref = $this->createTextQueryCondition($letter . '*', 'skos:prefLabel', $lang);
118
-        $textcondAlt = $this->createTextQueryCondition($letter . '*', 'skos:altLabel', $lang);
117
+        $textcondPref = $this->createTextQueryCondition($letter.'*', 'skos:prefLabel', $lang);
118
+        $textcondAlt = $this->createTextQueryCondition($letter.'*', 'skos:altLabel', $lang);
119 119
         $orderbyclause = $this->formatOrderBy("LCASE(?match)", $lang);
120 120
 
121
-        $filterDeprecated="";
122
-        if(!$showDeprecated){
123
-            $filterDeprecated="FILTER NOT EXISTS { ?s owl:deprecated true }";
121
+        $filterDeprecated = "";
122
+        if (!$showDeprecated) {
123
+            $filterDeprecated = "FILTER NOT EXISTS { ?s owl:deprecated true }";
124 124
         }
125 125
         
126 126
         $query = <<<EOQ
Please login to merge, or discard this patch.
model/Model.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -64,15 +64,15 @@  discard block
 block discarded – undo
64 64
     private function initializeVocabularies()
65 65
     {
66 66
         if (!file_exists($this->getConfig()->getVocabularyConfigFile())) {
67
-            throw new Exception($this->getConfig()->getVocabularyConfigFile() . ' is missing, please provide one.');
67
+            throw new Exception($this->getConfig()->getVocabularyConfigFile().' is missing, please provide one.');
68 68
         }
69 69
 
70 70
         try {
71 71
             // use APC user cache to store parsed vocabularies.ttl configuration
72 72
             if ($this->cache->isAvailable()) {
73 73
                 // @codeCoverageIgnoreStart
74
-                $key = realpath($this->getConfig()->getVocabularyConfigFile()) . ", " . filemtime($this->getConfig()->getVocabularyConfigFile());
75
-                $nskey = "namespaces of " . $key;
74
+                $key = realpath($this->getConfig()->getVocabularyConfigFile()).", ".filemtime($this->getConfig()->getVocabularyConfigFile());
75
+                $nskey = "namespaces of ".$key;
76 76
                 $this->graph = $this->cache->fetch($key);
77 77
                 $this->namespaces = $this->cache->fetch($nskey);
78 78
                 if ($this->graph === false || $this->namespaces === false) { // was not found in cache
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
                 $this->parseVocabularies($this->getConfig()->getVocabularyConfigFile());
86 86
             }
87 87
         } catch (Exception $e) {
88
-            echo "Error: " . $e->getMessage();
88
+            echo "Error: ".$e->getMessage();
89 89
         }
90 90
     }
91 91
 
@@ -297,18 +297,18 @@  discard block
 block discarded – undo
297 297
         }
298 298
 
299 299
         $vocabs = $params->getVocabs();
300
-        $showDeprecated=false;
300
+        $showDeprecated = false;
301 301
         if (sizeof($vocabs) === 1) { // search within vocabulary
302 302
             $voc = $vocabs[0];
303 303
             $sparql = $voc->getSparql();
304
-            $showDeprecated=$voc->getConfig()->getShowDeprecated();
304
+            $showDeprecated = $voc->getConfig()->getShowDeprecated();
305 305
         } else { // multi-vocabulary or global search
306 306
             $voc = null;
307 307
             $sparql = $this->getDefaultSparql();
308 308
             // @TODO : in a global search showDeprecated will always be false and cannot be set globally
309 309
         }
310 310
 
311
-        $results = $sparql->queryConcepts($vocabs, $params->getAdditionalFields(), $params->getUnique(), $params,$showDeprecated);
311
+        $results = $sparql->queryConcepts($vocabs, $params->getAdditionalFields(), $params->getUnique(), $params, $showDeprecated);
312 312
         if ($params->getRest() && $results && $params->getSearchLimit() !== 0) {
313 313
           $results = array_slice($results, $params->getOffset(), $params->getSearchLimit());
314 314
         }
@@ -458,7 +458,7 @@  discard block
 block discarded – undo
458 458
     public function getVocabularyCategories()
459 459
     {
460 460
         $cats = $this->graph->allOfType('skos:Concept');
461
-        if(empty($cats)) {
461
+        if (empty($cats)) {
462 462
             return array(new VocabularyCategory($this, null));
463 463
         }
464 464
 
@@ -541,9 +541,9 @@  discard block
 block discarded – undo
541 541
         }
542 542
         
543 543
         // if there are multiple vocabularies and one is the preferred vocabulary, return it
544
-        if($preferredVocabId != null) {
544
+        if ($preferredVocabId != null) {
545 545
             foreach ($vocabs as $vocab) {
546
-                if($vocab->getId() == $preferredVocabId) {
546
+                if ($vocab->getId() == $preferredVocabId) {
547 547
                     return $vocab;
548 548
                 }
549 549
             }
@@ -643,7 +643,7 @@  discard block
 block discarded – undo
643 643
         // using apc cache for the resource if available
644 644
         if ($this->cache->isAvailable()) {
645 645
             // @codeCoverageIgnoreStart
646
-            $key = 'fetch: ' . $uri;
646
+            $key = 'fetch: '.$uri;
647 647
             $resource = $this->cache->fetch($key);
648 648
             if ($resource === null || $resource === false) { // was not found in cache, or previous request failed
649 649
                 $resource = $this->fetchResourceFromUri($uri);
@@ -664,7 +664,7 @@  discard block
 block discarded – undo
664 664
      */
665 665
     public function getSparqlImplementation($dialect, $endpoint, $graph)
666 666
     {
667
-        $classname = $dialect . "Sparql";
667
+        $classname = $dialect."Sparql";
668 668
 
669 669
         return new $classname($endpoint, $graph, $this);
670 670
     }
Please login to merge, or discard this patch.
model/sparql/GenericSparql.php 1 patch
Spacing   +53 added lines, -53 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         $starttime = microtime(true);
72 72
         $result = $this->client->query($query);
73 73
         $elapsed = intval(round((microtime(true) - $starttime) * 1000));
74
-        if(method_exists($result, 'numRows')) {
74
+        if (method_exists($result, 'numRows')) {
75 75
             $numRows = $result->numRows();
76 76
             $logger->info("[qid $queryId] result: $numRows rows returned in $elapsed ms");
77 77
         } else { // graph result
@@ -87,20 +87,20 @@  discard block
 block discarded – undo
87 87
      * @param Vocabulary[]|null $vocabs
88 88
      * @return string
89 89
      */
90
-    protected function generateFromClause($vocabs=null) {
90
+    protected function generateFromClause($vocabs = null) {
91 91
         $graphs = array();
92 92
         $clause = '';
93 93
         if (!$vocabs) {
94 94
             return $this->graph !== '?graph' && $this->graph !== NULL ? "FROM <$this->graph>" : '';
95 95
         }
96
-        foreach($vocabs as $vocab) {
96
+        foreach ($vocabs as $vocab) {
97 97
             $graph = $vocab->getGraph();
98 98
             if (!in_array($graph, $graphs)) {
99 99
                 array_push($graphs, $graph);
100 100
             }
101 101
         }
102 102
         foreach ($graphs as $graph) {
103
-            if($graph !== NULL)
103
+            if ($graph !== NULL)
104 104
                 $clause .= "FROM NAMED <$graph> "; 
105 105
         }
106 106
         return $clause;
@@ -644,9 +644,9 @@  discard block
 block discarded – undo
644 644
                 $conceptscheme['title'] = $row->title->getValue();
645 645
             }
646 646
             // add dct:subject and their labels in the result
647
-            if(isset($row->domain) && isset($row->domainLabel)){
648
-                $conceptscheme['subject']['uri']=$row->domain->getURI();
649
-                $conceptscheme['subject']['prefLabel']=$row->domainLabel->getValue();
647
+            if (isset($row->domain) && isset($row->domainLabel)) {
648
+                $conceptscheme['subject']['uri'] = $row->domain->getURI();
649
+                $conceptscheme['subject']['prefLabel'] = $row->domainLabel->getValue();
650 650
             }
651 651
 
652 652
             $ret[$row->cs->getURI()] = $conceptscheme;
@@ -709,7 +709,7 @@  discard block
 block discarded – undo
709 709
         foreach ($graphs as $graph) {
710 710
           $values[] = "<$graph>";
711 711
         }
712
-        return "FILTER (?graph IN (" . implode(',', $values) . "))";
712
+        return "FILTER (?graph IN (".implode(',', $values)."))";
713 713
     }
714 714
 
715 715
     /**
@@ -719,16 +719,16 @@  discard block
 block discarded – undo
719 719
      * @return string sparql query clauses
720 720
      */
721 721
     protected function formatLimitAndOffset($limit, $offset) {
722
-        $limit = ($limit) ? 'LIMIT ' . $limit : '';
723
-        $offset = ($offset) ? 'OFFSET ' . $offset : '';
722
+        $limit = ($limit) ? 'LIMIT '.$limit : '';
723
+        $offset = ($offset) ? 'OFFSET '.$offset : '';
724 724
         // eliminating whitespace and line changes when the conditions aren't needed.
725 725
         $limitandoffset = '';
726 726
         if ($limit && $offset) {
727
-            $limitandoffset = "\n" . $limit . "\n" . $offset;
727
+            $limitandoffset = "\n".$limit."\n".$offset;
728 728
         } elseif ($limit) {
729
-            $limitandoffset = "\n" . $limit;
729
+            $limitandoffset = "\n".$limit;
730 730
         } elseif ($offset) {
731
-            $limitandoffset = "\n" . $offset;
731
+            $limitandoffset = "\n".$offset;
732 732
         }
733 733
 
734 734
         return $limitandoffset;
@@ -748,7 +748,7 @@  discard block
 block discarded – undo
748 748
             }
749 749
         }
750 750
 
751
-        return implode(' UNION ', $typePatterns);;
751
+        return implode(' UNION ', $typePatterns); ;
752 752
     }
753 753
 
754 754
     /**
@@ -880,14 +880,14 @@  discard block
 block discarded – undo
880 880
         // if search language and UI/display language differ, must also consider case where there is no prefLabel in
881 881
         // the display language; in that case, should use the label with the same language as the matched label
882 882
         $labelcondFallback = ($searchLang != $lang) ?
883
-          "OPTIONAL { # in case previous OPTIONAL block gives no labels\n" .
883
+          "OPTIONAL { # in case previous OPTIONAL block gives no labels\n".
884 884
           "?s skos:prefLabel ?label . FILTER (LANGMATCHES(LANG(?label), LANG(?match))) }" : "";
885 885
           
886 886
         //  Including the labels if there is no query term given.
887 887
         if ($rawterm === '') {
888 888
           $labelClause = "?s skos:prefLabel ?label .";
889
-          $labelClause = ($lang) ? $labelClause . " FILTER (LANGMATCHES(LANG(?label), '$lang'))" : $labelClause . "";
890
-          return $labelClause . " BIND(?label AS ?match)";
889
+          $labelClause = ($lang) ? $labelClause." FILTER (LANGMATCHES(LANG(?label), '$lang'))" : $labelClause."";
890
+          return $labelClause." BIND(?label AS ?match)";
891 891
         }
892 892
 
893 893
         /*
@@ -951,20 +951,20 @@  discard block
 block discarded – undo
951 951
         $schemecond = '';
952 952
         if (!empty($schemes)) {
953 953
             $conditions = array();
954
-            foreach($schemes as $scheme) {
954
+            foreach ($schemes as $scheme) {
955 955
                 $conditions[] = "{?s skos:inScheme <$scheme>}";
956 956
             }
957
-            $schemecond = '{'.implode(" UNION ",$conditions).'}';
957
+            $schemecond = '{'.implode(" UNION ", $conditions).'}';
958 958
         }
959
-        $filterDeprecated="";
959
+        $filterDeprecated = "";
960 960
         //show or hide deprecated concepts
961
-        if(!$showDeprecated){
962
-            $filterDeprecated="FILTER NOT EXISTS { ?s owl:deprecated true }";
961
+        if (!$showDeprecated) {
962
+            $filterDeprecated = "FILTER NOT EXISTS { ?s owl:deprecated true }";
963 963
         }
964 964
         // extra conditions for parent and group, if specified
965
-        $parentcond = ($params->getParentLimit()) ? "?s skos:broader+ <" . $params->getParentLimit() . "> ." : "";
966
-        $groupcond = ($params->getGroupLimit()) ? "<" . $params->getGroupLimit() . "> skos:member ?s ." : "";
967
-        $pgcond = $parentcond . $groupcond;
965
+        $parentcond = ($params->getParentLimit()) ? "?s skos:broader+ <".$params->getParentLimit()."> ." : "";
966
+        $groupcond = ($params->getGroupLimit()) ? "<".$params->getGroupLimit()."> skos:member ?s ." : "";
967
+        $pgcond = $parentcond.$groupcond;
968 968
 
969 969
         $orderextra = $this->isDefaultEndpoint() ? $this->graph : '';
970 970
 
@@ -1037,9 +1037,9 @@  discard block
 block discarded – undo
1037 1037
             $hit['type'][] = $this->shortenUri($typeuri);
1038 1038
         }
1039 1039
 
1040
-        if(!empty($fields)) {
1040
+        if (!empty($fields)) {
1041 1041
             foreach ($fields as $prop) {
1042
-                $propname = $prop . 's';
1042
+                $propname = $prop.'s';
1043 1043
                 if (isset($row->$propname)) {
1044 1044
                     foreach (explode("\n", $row->$propname->getValue()) as $line) {
1045 1045
                         $rdata = str_getcsv($line, ',', '"', '"');
@@ -1054,7 +1054,7 @@  discard block
 block discarded – undo
1054 1054
                             $propvals = $rdata[2];
1055 1055
                         }
1056 1056
 
1057
-                        $hit['skos:' . $prop][] = $propvals;
1057
+                        $hit['skos:'.$prop][] = $propvals;
1058 1058
                     }
1059 1059
                 }
1060 1060
             }
@@ -1130,7 +1130,7 @@  discard block
 block discarded – undo
1130 1130
      * @return array query result object
1131 1131
      */
1132 1132
     public function queryConcepts($vocabs, $fields = null, $unique = false, $params, $showDeprecated = false) {
1133
-        $query = $this->generateConceptSearchQuery($fields, $unique, $params,$showDeprecated);
1133
+        $query = $this->generateConceptSearchQuery($fields, $unique, $params, $showDeprecated);
1134 1134
         $results = $this->query($query);
1135 1135
         return $this->transformConceptSearchResults($results, $vocabs, $fields);
1136 1136
     }
@@ -1184,9 +1184,9 @@  discard block
 block discarded – undo
1184 1184
         $conditions = $this->formatFilterConditions($letter, $lang);
1185 1185
         $filtercondLabel = $conditions['filterpref'];
1186 1186
         $filtercondALabel = $conditions['filteralt'];
1187
-        $filterDeprecated="";
1188
-        if(!$showDeprecated){
1189
-            $filterDeprecated="FILTER NOT EXISTS { ?s owl:deprecated true }";
1187
+        $filterDeprecated = "";
1188
+        if (!$showDeprecated) {
1189
+            $filterDeprecated = "FILTER NOT EXISTS { ?s owl:deprecated true }";
1190 1190
         }
1191 1191
         $query = <<<EOQ
1192 1192
 SELECT DISTINCT ?s ?label ?alabel $fcl
@@ -1262,8 +1262,8 @@  discard block
 block discarded – undo
1262 1262
      * @param array $classes
1263 1263
      * @param boolean $showDeprecated whether to include deprecated concepts in the result (default: false)
1264 1264
      */
1265
-    public function queryConceptsAlphabetical($letter, $lang, $limit = null, $offset = null, $classes = null,$showDeprecated = false) {
1266
-        $query = $this->generateAlphabeticalListQuery($letter, $lang, $limit, $offset, $classes,$showDeprecated);
1265
+    public function queryConceptsAlphabetical($letter, $lang, $limit = null, $offset = null, $classes = null, $showDeprecated = false) {
1266
+        $query = $this->generateAlphabeticalListQuery($letter, $lang, $limit, $offset, $classes, $showDeprecated);
1267 1267
         $results = $this->query($query);
1268 1268
         return $this->transformAlphabeticalListResults($results);
1269 1269
     }
@@ -1555,7 +1555,7 @@  discard block
 block discarded – undo
1555 1555
                 if (!isset($row->label) || $row->label->getLang() === $lang) {
1556 1556
                     $ret[$row->object->getUri()] = $val;
1557 1557
                 } elseif ($row->label->getLang() === $fallbacklang) {
1558
-                    $val['label'] .= ' (' . $row->label->getLang() . ')';
1558
+                    $val['label'] .= ' ('.$row->label->getLang().')';
1559 1559
                     $ret[$row->object->getUri()] = $val;
1560 1560
                 }
1561 1561
             }
@@ -1651,10 +1651,10 @@  discard block
 block discarded – undo
1651 1651
 
1652 1652
             $label = null;
1653 1653
             if (isset($row->label)) {
1654
-                if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang . "-") == 0) {
1654
+                if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang."-") == 0) {
1655 1655
                     $label = $row->label->getValue();
1656 1656
                 } else {
1657
-                    $label = $row->label->getValue() . " (" . $row->label->getLang() . ")";
1657
+                    $label = $row->label->getValue()." (".$row->label->getLang().")";
1658 1658
                 }
1659 1659
 
1660 1660
             }
@@ -1730,8 +1730,8 @@  discard block
 block discarded – undo
1730 1730
         foreach ($result as $row) {
1731 1731
             if (isset($row->top) && isset($row->label)) {
1732 1732
                 $label = $row->label->getValue();
1733
-                if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang . "-") !== 0) {
1734
-                    $label .= ' (' . $row->label->getLang() . ')';
1733
+                if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang."-") !== 0) {
1734
+                    $label .= ' ('.$row->label->getLang().')';
1735 1735
                 }
1736 1736
                 $top = array('uri' => $row->top->getUri(), 'topConceptOf' => $row->topuri->getUri(), 'label' => $label, 'hasChildren' => filter_var($row->children->getValue(), FILTER_VALIDATE_BOOLEAN));
1737 1737
                 if (isset($row->notation)) {
@@ -1824,8 +1824,8 @@  discard block
 block discarded – undo
1824 1824
                 $ret[$uri]['exact'] = $row->exact->getUri();
1825 1825
             }
1826 1826
             if (isset($row->tops)) {
1827
-               $topConceptsList=array();
1828
-               $topConceptsList=explode(" ", $row->tops->getValue());
1827
+               $topConceptsList = array();
1828
+               $topConceptsList = explode(" ", $row->tops->getValue());
1829 1829
                // sort to garantee an alphabetical ordering of the URI
1830 1830
                sort($topConceptsList);
1831 1831
                $ret[$uri]['tops'] = $topConceptsList;
@@ -1838,8 +1838,8 @@  discard block
 block discarded – undo
1838 1838
                 $label = null;
1839 1839
                 if (isset($row->childlabel)) {
1840 1840
                     $label = $row->childlabel->getValue();
1841
-                    if ($row->childlabel->getLang() !== $lang && strpos($row->childlabel->getLang(), $lang . "-") !== 0) {
1842
-                        $label .= " (" . $row->childlabel->getLang() . ")";
1841
+                    if ($row->childlabel->getLang() !== $lang && strpos($row->childlabel->getLang(), $lang."-") !== 0) {
1842
+                        $label .= " (".$row->childlabel->getLang().")";
1843 1843
                     }
1844 1844
 
1845 1845
                 }
@@ -1860,8 +1860,8 @@  discard block
 block discarded – undo
1860 1860
             }
1861 1861
             if (isset($row->label)) {
1862 1862
                 $preflabel = $row->label->getValue();
1863
-                if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang . "-") !== 0) {
1864
-                    $preflabel .= ' (' . $row->label->getLang() . ')';
1863
+                if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang."-") !== 0) {
1864
+                    $preflabel .= ' ('.$row->label->getLang().')';
1865 1865
                 }
1866 1866
 
1867 1867
                 $ret[$uri]['prefLabel'] = $preflabel;
@@ -1982,9 +1982,9 @@  discard block
 block discarded – undo
1982 1982
      */
1983 1983
     private function generateConceptGroupContentsQuery($groupClass, $group, $lang, $showDeprecated = false) {
1984 1984
         $fcl = $this->generateFromClause();
1985
-        $filterDeprecated="";
1986
-        if(!$showDeprecated){
1987
-            $filterDeprecated="  FILTER NOT EXISTS { ?conc owl:deprecated true }";
1985
+        $filterDeprecated = "";
1986
+        if (!$showDeprecated) {
1987
+            $filterDeprecated = "  FILTER NOT EXISTS { ?conc owl:deprecated true }";
1988 1988
         }
1989 1989
         $query = <<<EOQ
1990 1990
 SELECT ?conc ?super ?label ?members ?type ?notation $fcl
@@ -2023,10 +2023,10 @@  discard block
 block discarded – undo
2023 2023
                     'type' => array($row->type->shorten()),
2024 2024
                 );
2025 2025
                 if (isset($row->label)) {
2026
-                    if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang . "-") == 0) {
2026
+                    if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang."-") == 0) {
2027 2027
                         $values[$row->conc->getURI()]['prefLabel'] = $row->label->getValue();
2028 2028
                     } else {
2029
-                        $values[$row->conc->getURI()]['prefLabel'] = $row->label->getValue() . " (" . $row->label->getLang() . ")";
2029
+                        $values[$row->conc->getURI()]['prefLabel'] = $row->label->getValue()." (".$row->label->getLang().")";
2030 2030
                     }
2031 2031
 
2032 2032
                 }
@@ -2054,8 +2054,8 @@  discard block
 block discarded – undo
2054 2054
      * @param boolean $showDeprecated whether to include deprecated concepts in search results
2055 2055
      * @return array Result array with concept URI as key and concept label as value
2056 2056
      */
2057
-    public function listConceptGroupContents($groupClass, $group, $lang,$showDeprecated = false) {
2058
-        $query = $this->generateConceptGroupContentsQuery($groupClass, $group, $lang,$showDeprecated);
2057
+    public function listConceptGroupContents($groupClass, $group, $lang, $showDeprecated = false) {
2058
+        $query = $this->generateConceptGroupContentsQuery($groupClass, $group, $lang, $showDeprecated);
2059 2059
         $result = $this->query($query);
2060 2060
         return $this->transformConceptGroupContentsResults($result, $lang);
2061 2061
     }
@@ -2068,7 +2068,7 @@  discard block
 block discarded – undo
2068 2068
      */
2069 2069
     private function generateChangeListQuery($lang, $offset, $prop) {
2070 2070
         $fcl = $this->generateFromClause();
2071
-        $offset = ($offset) ? 'OFFSET ' . $offset : '';
2071
+        $offset = ($offset) ? 'OFFSET '.$offset : '';
2072 2072
 
2073 2073
         $query = <<<EOQ
2074 2074
 SELECT DISTINCT ?concept ?date ?label $fcl
Please login to merge, or discard this patch.
model/ConceptPropertyValueLiteral.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
                 return Punic\Calendar::formatDate($val, 'short');
50 50
             } catch (Exception $e) {
51 51
                 trigger_error($e->getMessage(), E_USER_WARNING);
52
-                return (string) $this->literal;
52
+                return (string)$this->literal;
53 53
             }
54 54
         }
55 55
         return $this->literal->getValue();
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         $resources = $graph->resourcesMatching('skosxl:literalForm', $this->literal);
81 81
         foreach ($resources as $xlres) {
82 82
             foreach ($xlres->properties() as $prop) {
83
-                foreach($graph->allLiterals($xlres, $prop) as $val) {
83
+                foreach ($graph->allLiterals($xlres, $prop) as $val) {
84 84
                     if ($prop !== 'rdf:type') {
85 85
                         $ret[$prop] = $val;
86 86
                     }
Please login to merge, or discard this patch.
model/LabelSkosXL.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     public function getPrefLabel() {
12 12
         $label;
13 13
         $labels = $this->resource->allResources('skosxl:prefLabel');
14
-        foreach($labels as $labres) {
14
+        foreach ($labels as $labres) {
15 15
             $label = $labres->getLiteral('skosxl:literalForm');
16 16
             if ($label->getLang() == $this->clang) {
17 17
                 return $label;
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     public function getProperties() {
24 24
         $ret = array();
25 25
         $props = $this->resource->properties();
26
-        foreach($props as $prop) {
26
+        foreach ($props as $prop) {
27 27
             if ($prop !== 'skosxl:prefLabel') {
28 28
                 $ret[$prop] = $this->resource->get($prop);
29 29
             }
Please login to merge, or discard this patch.
model/ConceptPropertyValue.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     {
25 25
         $label = is_string($this->getLabel()) ? $this->getLabel() : $this->getLabel()->getValue();
26 26
         if ($this->vocab->getConfig()->sortByNotation()) {
27
-            $label = $this->getNotation() . $label;
27
+            $label = $this->getNotation().$label;
28 28
         }
29 29
 
30 30
         return $label;
@@ -47,9 +47,9 @@  discard block
 block discarded – undo
47 47
                 }
48 48
                 // We need to check all the labels in case one of them matches a subtag of the current language
49 49
                 if ($this->resource->allLiterals('skos:prefLabel')) {
50
-                    foreach($this->resource->allLiterals('skos:prefLabel') as $label) {
50
+                    foreach ($this->resource->allLiterals('skos:prefLabel') as $label) {
51 51
                         // the label lang code is a subtag of the UI lang eg. en-GB - create a new literal with the main language
52
-                        if ($label !== null && strpos($label->getLang(), $fallback . '-') === 0) {
52
+                        if ($label !== null && strpos($label->getLang(), $fallback.'-') === 0) {
53 53
                             return EasyRdf\Literal::create($label, $fallback);
54 54
                         }
55 55
                     }
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
     public function getReifiedPropertyValues() {
138 138
         $ret = array();
139 139
         $props = $this->resource->propertyUris();
140
-        foreach($props as $prop) {
140
+        foreach ($props as $prop) {
141 141
             $prop = (EasyRdf\RdfNamespace::shorten($prop) !== null) ? EasyRdf\RdfNamespace::shorten($prop) : $prop;
142 142
             foreach ($this->resource->allLiterals($prop) as $val) {
143 143
                 if ($prop !== 'rdf:value' && $this->resource->get($prop)) { // shown elsewhere
Please login to merge, or discard this patch.
model/Concept.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -113,9 +113,9 @@  discard block
 block discarded – undo
113 113
                 return $this->resource->label($fallback);
114 114
             }
115 115
             // We need to check all the labels in case one of them matches a subtag of the current language
116
-            foreach($this->resource->allLiterals('skos:prefLabel') as $label) {
116
+            foreach ($this->resource->allLiterals('skos:prefLabel') as $label) {
117 117
                 // the label lang code is a subtag of the UI lang eg. en-GB - create a new literal with the main language
118
-                if ($label !== null && strpos($label->getLang(), $fallback . '-') === 0) {
118
+                if ($label !== null && strpos($label->getLang(), $fallback.'-') === 0) {
119 119
                     return EasyRdf\Literal::create($label, $fallback);
120 120
                 }
121 121
             }
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 
137 137
     public function hasXlLabel($prop = 'prefLabel')
138 138
     {
139
-        if ($this->resource->hasProperty('skosxl:' . $prop)) {
139
+        if ($this->resource->hasProperty('skosxl:'.$prop)) {
140 140
             return true;
141 141
         }
142 142
         return false;
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
     public function getXlLabel()
146 146
     {
147 147
         $labels = $this->resource->allResources('skosxl:prefLabel');
148
-        foreach($labels as $labres) {
148
+        foreach ($labels as $labres) {
149 149
             $label = $labres->getLiteral('skosxl:literalForm');
150 150
             if ($label !== null && $label->getLang() == $this->clang) {
151 151
                 return new LabelSkosXL($this->model, $labres);
@@ -356,9 +356,9 @@  discard block
 block discarded – undo
356 356
                 // if not found in current vocabulary, look up in the default graph to be able
357 357
                 // to read an ontology loaded in a separate graph
358 358
                 // note that this imply that the property has an rdf:type declared for the query to work
359
-                if(!$proplabel) {
359
+                if (!$proplabel) {
360 360
                     $envLangLabels = $this->model->getDefaultSparql()->queryLabel($longUri, $this->getEnvLang());
361
-                    $proplabel = ($envLangLabels)?$envLangLabels[$this->getEnvLang()]:$this->model->getDefaultSparql()->queryLabel($longUri, '')[''];
361
+                    $proplabel = ($envLangLabels) ? $envLangLabels[$this->getEnvLang()] : $this->model->getDefaultSparql()->queryLabel($longUri, '')[''];
362 362
                 }
363 363
 
364 364
                 // look for superproperties in the current graph
@@ -368,12 +368,12 @@  discard block
 block discarded – undo
368 368
                 }
369 369
 
370 370
                 // also look up superprops in the default graph if not found in current vocabulary
371
-                if(!$superprops || empty($superprops)) {
371
+                if (!$superprops || empty($superprops)) {
372 372
                     $superprops = $this->model->getDefaultSparql()->querySuperProperties($longUri);
373 373
                 }
374 374
 
375 375
                 // we're reading only one super property, even if there are multiple ones
376
-                $superprop = ($superprops)?$superprops[0]:null;
376
+                $superprop = ($superprops) ? $superprops[0] : null;
377 377
                 if ($superprop) {
378 378
                     $superprop = EasyRdf\RdfNamespace::shorten($superprop) ? EasyRdf\RdfNamespace::shorten($superprop) : $superprop;
379 379
                 }
@@ -385,7 +385,7 @@  discard block
 block discarded – undo
385 385
                 }
386 386
 
387 387
                 // searching for subproperties of literals too
388
-                if($superprops) {
388
+                if ($superprops) {
389 389
                     foreach ($superprops as $subi) {
390 390
                         $suburi = EasyRdf\RdfNamespace::shorten($subi) ? EasyRdf\RdfNamespace::shorten($subi) : $subi;
391 391
                         $duplicates[$suburi] = $prop;
@@ -505,14 +505,14 @@  discard block
 block discarded – undo
505 505
 
506 506
             // making a human readable string from the timestamps
507 507
             if ($created != '') {
508
-                $ret = gettext('skosmos:created') . ' ' . (Punic\Calendar::formatDate($created, 'short'));
508
+                $ret = gettext('skosmos:created').' '.(Punic\Calendar::formatDate($created, 'short'));
509 509
             }
510 510
 
511 511
             if ($modified != '') {
512 512
                 if ($created != '') {
513
-                    $ret .= ', ' . gettext('skosmos:modified') . ' ' . (Punic\Calendar::formatDate($modified, 'short'));
513
+                    $ret .= ', '.gettext('skosmos:modified').' '.(Punic\Calendar::formatDate($modified, 'short'));
514 514
                 } else {
515
-                    $ret .= ' ' . ucfirst(gettext('skosmos:modified')) . ' ' . (Punic\Calendar::formatDate($modified, 'short'));
515
+                    $ret .= ' '.ucfirst(gettext('skosmos:modified')).' '.(Punic\Calendar::formatDate($modified, 'short'));
516 516
                 }
517 517
 
518 518
             }
@@ -520,12 +520,12 @@  discard block
 block discarded – undo
520 520
             trigger_error($e->getMessage(), E_USER_WARNING);
521 521
             $ret = '';
522 522
             if ($this->resource->get('dc:modified')) {
523
-                $modified = (string) $this->resource->get('dc:modified');
524
-                $ret = gettext('skosmos:modified') . ' ' . $modified;
523
+                $modified = (string)$this->resource->get('dc:modified');
524
+                $ret = gettext('skosmos:modified').' '.$modified;
525 525
             }
526 526
             if ($this->resource->get('dc:created')) {
527
-                $created .= (string) $this->resource->get('dc:created');
528
-                $ret .= ' ' . gettext('skosmos:created') . ' ' . $created;
527
+                $created .= (string)$this->resource->get('dc:created');
528
+                $ret .= ' '.gettext('skosmos:created').' '.$created;
529 529
             }
530 530
         }
531 531
         return $ret;
@@ -635,7 +635,7 @@  discard block
 block discarded – undo
635 635
         $ret = array();
636 636
         foreach ($labels as $lit) {
637 637
             // filtering away subsets of the current language eg. en vs en-GB
638
-            if ($lit->getLang() != $this->clang && strpos($lit->getLang(), $this->getEnvLang() . '-') !== 0) {
638
+            if ($lit->getLang() != $this->clang && strpos($lit->getLang(), $this->getEnvLang().'-') !== 0) {
639 639
                 $prop = in_array($lit, $prefLabels) ? 'skos:prefLabel' : 'skos:altLabel';
640 640
                 $ret[$this->literalLanguageToString($lit)][] = new ConceptPropertyValueLiteral($this->model, $this->vocab, $this->resource, $lit, $prop);
641 641
             }
Please login to merge, or discard this patch.