Completed
Pull Request — master (#748)
by Dan Michael O.
02:06
created
model/SkosmosTurtleParser.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -55,6 +55,7 @@
 block discarded – undo
55 55
 
56 56
     /**
57 57
      * Steps back, restoring the previous character or statement read() to the input buffer.
58
+     * @param string $chars
58 59
      */
59 60
     protected function unread($chars)
60 61
     {
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
      */
22 22
     protected function peek()
23 23
     {
24
-        if(!$this->dataLength) { $this->dataLength = strlen($this->data); }
24
+        if (!$this->dataLength) { $this->dataLength = strlen($this->data); }
25 25
         if ($this->dataLength > $this->bytePos) {
26 26
             $slice = substr($this->data, $this->bytePos, 4);
27 27
             return mb_substr($slice, 0, 1, "UTF-8");
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
     {
79 79
         if ($this->bytePos - 4 > 0) {
80 80
             $slice = substr($this->data, $this->bytePos - 4, 4);
81
-            while($slice != '') {
81
+            while ($slice != '') {
82 82
                 if (!self::isWhitespace(mb_substr($slice, -1, 1, "UTF-8"))) {
83 83
                     return;
84 84
                 }
Please login to merge, or discard this patch.
controller/WebController.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         // specify where to look for templates and cache
38 38
         $loader = new Twig_Loader_Filesystem('view');
39 39
         // initialize Twig environment
40
-        $this->twig = new Twig_Environment($loader, array('cache' => $tmpDir,'auto_reload' => true));
40
+        $this->twig = new Twig_Environment($loader, array('cache' => $tmpDir, 'auto_reload' => true));
41 41
         $this->twig->addExtension(new Twig_Extensions_Extension_I18n());
42 42
         // used for setting the base href for the relative urls
43 43
         $this->twig->addGlobal("BaseHref", $this->getBaseHref());
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
         $this->twig->addFilter(new Twig_SimpleFilter('link_url', array($this, 'linkUrlFilter')));
65 65
 
66 66
         // register a Twig filter for generating strings from language codes with CLDR
67
-        $langFilter = new Twig_SimpleFilter('lang_name', function ($langcode, $lang) {
67
+        $langFilter = new Twig_SimpleFilter('lang_name', function($langcode, $lang) {
68 68
             return Language::getName($langcode, $lang);
69 69
         });
70 70
         $this->twig->addFilter($langFilter);
@@ -111,18 +111,18 @@  discard block
 block discarded – undo
111 111
         $localname = $vocab->getLocalName($uri);
112 112
         if ($localname !== $uri && $localname === urlencode($localname)) {
113 113
             // check that the prefix stripping worked, and there are no problematic chars in localname
114
-            $paramstr = sizeof($params) > 0 ? '?' . http_build_query($params) : '';
114
+            $paramstr = sizeof($params) > 0 ? '?'.http_build_query($params) : '';
115 115
             if ($type && $type !== '' && $type !== 'vocab' && !($localname === '' && $type === 'page')) {
116
-                return "$vocid/$lang/$type/$localname" . $paramstr;
116
+                return "$vocid/$lang/$type/$localname".$paramstr;
117 117
             }
118 118
 
119
-            return "$vocid/$lang/$localname" . $paramstr;
119
+            return "$vocid/$lang/$localname".$paramstr;
120 120
         }
121 121
 
122 122
         // case 2: URI outside vocabulary namespace, or has problematic chars
123 123
         // pass the full URI as parameter instead
124 124
         $params['uri'] = $uri;
125
-        return "$vocid/$lang/$type/?" . http_build_query($params);
125
+        return "$vocid/$lang/$type/?".http_build_query($params);
126 126
     }
127 127
 
128 128
     /**
@@ -279,12 +279,12 @@  discard block
 block discarded – undo
279 279
     private function createFeedbackHeaders($fromName, $fromEmail, $toMail)
280 280
     {
281 281
         $headers = "MIME-Version: 1.0″ . '\r\n";
282
-        $headers .= "Content-type: text/html; charset=UTF-8" . "\r\n";
282
+        $headers .= "Content-type: text/html; charset=UTF-8"."\r\n";
283 283
         if ($toMail) {
284
-            $headers .= "Cc: " . $this->model->getConfig()->getFeedbackAddress() . "\r\n";
284
+            $headers .= "Cc: ".$this->model->getConfig()->getFeedbackAddress()."\r\n";
285 285
         }
286 286
 
287
-        $headers .= "From: $fromName <$fromEmail>" . "\r\n" . 'X-Mailer: PHP/' . phpversion();
287
+        $headers .= "From: $fromName <$fromEmail>"."\r\n".'X-Mailer: PHP/'.phpversion();
288 288
         return $headers;
289 289
     }
290 290
 
@@ -299,20 +299,20 @@  discard block
 block discarded – undo
299 299
     {
300 300
         $toAddress = ($toMail) ? $toMail : $this->model->getConfig()->getFeedbackAddress();
301 301
         if ($fromVocab !== null && $fromVocab !== '') {
302
-            $message = 'Feedback from vocab: ' . strtoupper($fromVocab) . "<br />" . $message;
302
+            $message = 'Feedback from vocab: '.strtoupper($fromVocab)."<br />".$message;
303 303
         }
304 304
 
305
-        $subject = SERVICE_NAME . " feedback";
305
+        $subject = SERVICE_NAME." feedback";
306 306
         $headers = $this->createFeedbackHeaders($fromName, $fromEmail, $toMail);
307 307
         $envelopeSender = FEEDBACK_ENVELOPE_SENDER;
308 308
         $params = empty($envelopeSender) ? '' : "-f $envelopeSender";
309 309
 
310 310
         // adding some information about the user for debugging purposes.
311
-        $message = $message . "<br /><br /> Debugging information:"
312
-            . "<br />Timestamp: " . date(DATE_RFC2822)
313
-            . "<br />User agent: " . $request->getServerConstant('HTTP_USER_AGENT')
314
-            . "<br />IP address: " . $request->getServerConstant('REMOTE_ADDR')
315
-            . "<br />Referer: " . $request->getServerConstant('HTTP_REFERER');
311
+        $message = $message."<br /><br /> Debugging information:"
312
+            . "<br />Timestamp: ".date(DATE_RFC2822)
313
+            . "<br />User agent: ".$request->getServerConstant('HTTP_USER_AGENT')
314
+            . "<br />IP address: ".$request->getServerConstant('REMOTE_ADDR')
315
+            . "<br />Referer: ".$request->getServerConstant('HTTP_REFERER');
316 316
 
317 317
         try {
318 318
             mail($toAddress, $subject, $message, $headers, $params);
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
             header("HTTP/1.0 404 Not Found");
321 321
             $template = $this->twig->loadTemplate('error-page.twig');
322 322
             if ($this->model->getConfig()->getLogCaughtExceptions()) {
323
-                error_log('Caught exception: ' . $e->getMessage());
323
+                error_log('Caught exception: '.$e->getMessage());
324 324
             }
325 325
 
326 326
             echo $template->render(
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
         $vocids = ($vocabs !== null && $vocabs !== '') ? explode(' ', $vocabs) : null;
368 368
         $vocabObjects = array();
369 369
         if ($vocids) {
370
-            foreach($vocids as $vocid) {
370
+            foreach ($vocids as $vocid) {
371 371
                 $vocabObjects[] = $this->model->getVocabulary($vocid);
372 372
             }
373 373
         }
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
         } catch (Exception $e) {
379 379
             header("HTTP/1.0 404 Not Found");
380 380
             if ($this->model->getConfig()->getLogCaughtExceptions()) {
381
-                error_log('Caught exception: ' . $e->getMessage());
381
+                error_log('Caught exception: '.$e->getMessage());
382 382
             }
383 383
             $this->invokeGenericErrorPage($request, $e->getMessage());
384 384
             return;
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
                 'search_count' => $counts,
395 395
                 'languages' => $this->languages,
396 396
                 'search_results' => $searchResults,
397
-                'rest' => $parameters->getOffset()>0,
397
+                'rest' => $parameters->getOffset() > 0,
398 398
                 'global_search' => true,
399 399
                 'term' => $request->getQueryParam('q'),
400 400
                 'lang_list' => $langList,
@@ -419,7 +419,7 @@  discard block
 block discarded – undo
419 419
         } catch (Exception $e) {
420 420
             header("HTTP/1.0 404 Not Found");
421 421
             if ($this->model->getConfig()->getLogCaughtExceptions()) {
422
-                error_log('Caught exception: ' . $e->getMessage());
422
+                error_log('Caught exception: '.$e->getMessage());
423 423
             }
424 424
 
425 425
             echo $template->render(
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
         } catch (Exception $e) {
441 441
             header("HTTP/1.0 404 Not Found");
442 442
             if ($this->model->getConfig()->getLogCaughtExceptions()) {
443
-                error_log('Caught exception: ' . $e->getMessage());
443
+                error_log('Caught exception: '.$e->getMessage());
444 444
             }
445 445
 
446 446
             echo $template->render(
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
                 'vocab' => $vocab,
458 458
                 'search_results' => $searchResults,
459 459
                 'search_count' => $counts,
460
-                'rest' => $parameters->getOffset()>0,
460
+                'rest' => $parameters->getOffset() > 0,
461 461
                 'limit_parent' => $parameters->getParentLimit(),
462 462
                 'limit_type' =>  $request->getQueryParam('type') ? explode('+', $request->getQueryParam('type')) : null,
463 463
                 'limit_group' => $parameters->getGroupLimit(),
@@ -582,7 +582,7 @@  discard block
 block discarded – undo
582 582
      * Loads and renders the view containing a list of recent changes in the vocabulary.
583 583
      * @param Request $request
584 584
      */
585
-    public function invokeChangeList($request, $prop='dc:created')
585
+    public function invokeChangeList($request, $prop = 'dc:created')
586 586
     {
587 587
         // set language parameters for gettext
588 588
         $this->setLanguageProperties($request->getLang());
Please login to merge, or discard this patch.
model/sparql/GenericSparql.php 4 patches
Doc Comments   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -453,7 +453,7 @@  discard block
 block discarded – undo
453 453
      * Returns information (as a graph) for one or more concept URIs
454 454
      * @param mixed $uris concept URI (string) or array of URIs
455 455
      * @param string|null $arrayClass the URI for thesaurus array class, or null if not used
456
-     * @param \Vocabulary[]|null $vocabs vocabularies to target
456
+     * @param Vocabulary[] $vocabs vocabularies to target
457 457
      * @return \Concept[]
458 458
      */
459 459
     public function queryConceptInfoGraph($uris, $arrayClass = null, $vocabs = array()) {
@@ -673,7 +673,7 @@  discard block
 block discarded – undo
673 673
 
674 674
     /**
675 675
      * Generate a VALUES clause for limiting the targeted graphs.
676
-     * @param Vocabulary[]|null $vocabs array of Vocabulary objects to target
676
+     * @param Vocabulary[] $vocabs array of Vocabulary objects to target
677 677
      * @return string VALUES clause, or "" if not necessary to limit
678 678
      */
679 679
     protected function formatValuesGraph($vocabs) {
@@ -853,6 +853,7 @@  discard block
 block discarded – undo
853 853
      * @param string $searchLang language code used for matching labels (null means any language)
854 854
      * @param string[] $props properties to target e.g. array('skos:prefLabel','skos:altLabel')
855 855
      * @param boolean $unique restrict results to unique concepts (default: false)
856
+     * @param string $filterGraph
856 857
      * @return string sparql query
857 858
      */
858 859
     protected function generateConceptSearchQueryInner($term, $lang, $searchLang, $props, $unique, $filterGraph)
@@ -1118,6 +1119,7 @@  discard block
 block discarded – undo
1118 1119
     /**
1119 1120
      * Generates sparql query clauses used for creating the alphabetical index.
1120 1121
      * @param string $letter the letter (or special class) to search for
1122
+     * @param string $lang
1121 1123
      * @return array of sparql query clause strings
1122 1124
      */
1123 1125
     private function formatFilterConditions($letter, $lang) {
Please login to merge, or discard this patch.
Braces   +10 added lines, -6 removed lines patch added patch discarded remove patch
@@ -46,12 +46,16 @@  discard block
 block discarded – undo
46 46
         $this->client = new EasyRdf\Sparql\Client($endpoint);
47 47
 
48 48
         // set graphClause so that it can be used by all queries
49
-        if ($this->isDefaultEndpoint()) // default endpoint; query any graph (and catch it in a variable)
49
+        if ($this->isDefaultEndpoint()) {
50
+          // default endpoint; query any graph (and catch it in a variable)
50 51
         {
51 52
             $this->graphClause = "GRAPH $graph";
52
-        } elseif ($graph) // query a specific graph
53
+        }
54
+        } elseif ($graph) {
55
+          // query a specific graph
53 56
         {
54 57
             $this->graphClause = "GRAPH <$graph>";
58
+        }
55 59
         } else // query the default graph
56 60
         {
57 61
             $this->graphClause = "";
@@ -100,8 +104,9 @@  discard block
 block discarded – undo
100 104
             }
101 105
         }
102 106
         foreach ($graphs as $graph) {
103
-            if($graph !== NULL)
104
-                $clause .= "FROM NAMED <$graph> "; 
107
+            if($graph !== NULL) {
108
+                            $clause .= "FROM NAMED <$graph> ";
109
+            }
105 110
         }
106 111
         return $clause;
107 112
     }
@@ -1847,8 +1852,7 @@  discard block
 block discarded – undo
1847 1852
         if (sizeof($ret) > 0) {
1848 1853
             // existing concept, with children
1849 1854
             return $ret;
1850
-        }
1851
-        else {
1855
+        } else {
1852 1856
             // nonexistent concept
1853 1857
             return null;
1854 1858
         }
Please login to merge, or discard this patch.
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      *
65 65
      * @param string $query
66 66
      * @return string
67
-    */
67
+     */
68 68
     protected function generateQueryPrefixes($query)
69 69
     {
70 70
         // Check for undefined prefixes
@@ -1809,7 +1809,7 @@  discard block
 block discarded – undo
1809 1809
 
1810 1810
     /**
1811 1811
      * Generates a sparql query for finding the hierarchy for a concept.
1812
-	 * A concept may be a top concept in multiple schemes, returned as a single whitespace-separated literal.
1812
+     * A concept may be a top concept in multiple schemes, returned as a single whitespace-separated literal.
1813 1813
      * @param string $uri concept uri.
1814 1814
      * @param string $lang
1815 1815
      * @param string $fallback language to use if label is not available in the preferred language
@@ -1886,11 +1886,11 @@  discard block
 block discarded – undo
1886 1886
                 $ret[$uri]['exact'] = $row->exact->getUri();
1887 1887
             }
1888 1888
             if (isset($row->tops)) {
1889
-               $topConceptsList=array();
1890
-               $topConceptsList=explode(" ", $row->tops->getValue());
1891
-               // sort to garantee an alphabetical ordering of the URI
1892
-               sort($topConceptsList);
1893
-               $ret[$uri]['tops'] = $topConceptsList;
1889
+                $topConceptsList=array();
1890
+                $topConceptsList=explode(" ", $row->tops->getValue());
1891
+                // sort to garantee an alphabetical ordering of the URI
1892
+                sort($topConceptsList);
1893
+                $ret[$uri]['tops'] = $topConceptsList;
1894 1894
             }
1895 1895
             if (isset($row->children)) {
1896 1896
                 if (!isset($ret[$uri]['narrower'])) {
Please login to merge, or discard this patch.
Spacing   +54 added lines, -54 removed lines patch added patch discarded remove patch
@@ -87,11 +87,11 @@  discard block
 block discarded – undo
87 87
     protected function query($query) {
88 88
         $queryId = sprintf("%05d", rand(0, 99999));
89 89
         $logger = $this->model->getLogger();
90
-        $logger->info("[qid $queryId] SPARQL query:\n" . $this->generateQueryPrefixes($query) . "\n$query\n");
90
+        $logger->info("[qid $queryId] SPARQL query:\n".$this->generateQueryPrefixes($query)."\n$query\n");
91 91
         $starttime = microtime(true);
92 92
         $result = $this->client->query($query);
93 93
         $elapsed = intval(round((microtime(true) - $starttime) * 1000));
94
-        if(method_exists($result, 'numRows')) {
94
+        if (method_exists($result, 'numRows')) {
95 95
             $numRows = $result->numRows();
96 96
             $logger->info("[qid $queryId] result: $numRows rows returned in $elapsed ms");
97 97
         } else { // graph result
@@ -107,20 +107,20 @@  discard block
 block discarded – undo
107 107
      * @param Vocabulary[]|null $vocabs
108 108
      * @return string
109 109
      */
110
-    protected function generateFromClause($vocabs=null) {
110
+    protected function generateFromClause($vocabs = null) {
111 111
         $graphs = array();
112 112
         $clause = '';
113 113
         if (!$vocabs) {
114 114
             return $this->graph !== '?graph' && $this->graph !== NULL ? "FROM <$this->graph>" : '';
115 115
         }
116
-        foreach($vocabs as $vocab) {
116
+        foreach ($vocabs as $vocab) {
117 117
             $graph = $vocab->getGraph();
118 118
             if (!in_array($graph, $graphs)) {
119 119
                 array_push($graphs, $graph);
120 120
             }
121 121
         }
122 122
         foreach ($graphs as $graph) {
123
-            if($graph !== NULL)
123
+            if ($graph !== NULL)
124 124
                 $clause .= "FROM NAMED <$graph> "; 
125 125
         }
126 126
         return $clause;
@@ -664,9 +664,9 @@  discard block
 block discarded – undo
664 664
                 $conceptscheme['title'] = $row->title->getValue();
665 665
             }
666 666
             // add dct:subject and their labels in the result
667
-            if(isset($row->domain) && isset($row->domainLabel)){
668
-                $conceptscheme['subject']['uri']=$row->domain->getURI();
669
-                $conceptscheme['subject']['prefLabel']=$row->domainLabel->getValue();
667
+            if (isset($row->domain) && isset($row->domainLabel)) {
668
+                $conceptscheme['subject']['uri'] = $row->domain->getURI();
669
+                $conceptscheme['subject']['prefLabel'] = $row->domainLabel->getValue();
670 670
             }
671 671
 
672 672
             $ret[$row->cs->getURI()] = $conceptscheme;
@@ -729,7 +729,7 @@  discard block
 block discarded – undo
729 729
         foreach ($graphs as $graph) {
730 730
           $values[] = "<$graph>";
731 731
         }
732
-        return "FILTER (?graph IN (" . implode(',', $values) . "))";
732
+        return "FILTER (?graph IN (".implode(',', $values)."))";
733 733
     }
734 734
 
735 735
     /**
@@ -739,16 +739,16 @@  discard block
 block discarded – undo
739 739
      * @return string sparql query clauses
740 740
      */
741 741
     protected function formatLimitAndOffset($limit, $offset) {
742
-        $limit = ($limit) ? 'LIMIT ' . $limit : '';
743
-        $offset = ($offset) ? 'OFFSET ' . $offset : '';
742
+        $limit = ($limit) ? 'LIMIT '.$limit : '';
743
+        $offset = ($offset) ? 'OFFSET '.$offset : '';
744 744
         // eliminating whitespace and line changes when the conditions aren't needed.
745 745
         $limitandoffset = '';
746 746
         if ($limit && $offset) {
747
-            $limitandoffset = "\n" . $limit . "\n" . $offset;
747
+            $limitandoffset = "\n".$limit."\n".$offset;
748 748
         } elseif ($limit) {
749
-            $limitandoffset = "\n" . $limit;
749
+            $limitandoffset = "\n".$limit;
750 750
         } elseif ($offset) {
751
-            $limitandoffset = "\n" . $offset;
751
+            $limitandoffset = "\n".$offset;
752 752
         }
753 753
 
754 754
         return $limitandoffset;
@@ -768,7 +768,7 @@  discard block
 block discarded – undo
768 768
             }
769 769
         }
770 770
 
771
-        return implode(' UNION ', $typePatterns);;
771
+        return implode(' UNION ', $typePatterns); ;
772 772
     }
773 773
 
774 774
     /**
@@ -900,14 +900,14 @@  discard block
 block discarded – undo
900 900
         // if search language and UI/display language differ, must also consider case where there is no prefLabel in
901 901
         // the display language; in that case, should use the label with the same language as the matched label
902 902
         $labelcondFallback = ($searchLang != $lang) ?
903
-          "OPTIONAL { # in case previous OPTIONAL block gives no labels\n" .
903
+          "OPTIONAL { # in case previous OPTIONAL block gives no labels\n".
904 904
           "?s skos:prefLabel ?label . FILTER (LANGMATCHES(LANG(?label), LANG(?match))) }" : "";
905 905
           
906 906
         //  Including the labels if there is no query term given.
907 907
         if ($rawterm === '') {
908 908
           $labelClause = "?s skos:prefLabel ?label .";
909
-          $labelClause = ($lang) ? $labelClause . " FILTER (LANGMATCHES(LANG(?label), '$lang'))" : $labelClause . "";
910
-          return $labelClause . " BIND(?label AS ?match)";
909
+          $labelClause = ($lang) ? $labelClause." FILTER (LANGMATCHES(LANG(?label), '$lang'))" : $labelClause."";
910
+          return $labelClause." BIND(?label AS ?match)";
911 911
         }
912 912
 
913 913
         /*
@@ -971,20 +971,20 @@  discard block
 block discarded – undo
971 971
         $schemecond = '';
972 972
         if (!empty($schemes)) {
973 973
             $conditions = array();
974
-            foreach($schemes as $scheme) {
974
+            foreach ($schemes as $scheme) {
975 975
                 $conditions[] = "{?s skos:inScheme <$scheme>}";
976 976
             }
977
-            $schemecond = '{'.implode(" UNION ",$conditions).'}';
977
+            $schemecond = '{'.implode(" UNION ", $conditions).'}';
978 978
         }
979
-        $filterDeprecated="";
979
+        $filterDeprecated = "";
980 980
         //show or hide deprecated concepts
981
-        if(!$showDeprecated){
982
-            $filterDeprecated="FILTER NOT EXISTS { ?s owl:deprecated true }";
981
+        if (!$showDeprecated) {
982
+            $filterDeprecated = "FILTER NOT EXISTS { ?s owl:deprecated true }";
983 983
         }
984 984
         // extra conditions for parent and group, if specified
985
-        $parentcond = ($params->getParentLimit()) ? "?s skos:broader+ <" . $params->getParentLimit() . "> ." : "";
986
-        $groupcond = ($params->getGroupLimit()) ? "<" . $params->getGroupLimit() . "> skos:member ?s ." : "";
987
-        $pgcond = $parentcond . $groupcond;
985
+        $parentcond = ($params->getParentLimit()) ? "?s skos:broader+ <".$params->getParentLimit()."> ." : "";
986
+        $groupcond = ($params->getGroupLimit()) ? "<".$params->getGroupLimit()."> skos:member ?s ." : "";
987
+        $pgcond = $parentcond.$groupcond;
988 988
 
989 989
         $orderextra = $this->isDefaultEndpoint() ? $this->graph : '';
990 990
 
@@ -1057,9 +1057,9 @@  discard block
 block discarded – undo
1057 1057
             $hit['type'][] = $this->shortenUri($typeuri);
1058 1058
         }
1059 1059
 
1060
-        if(!empty($fields)) {
1060
+        if (!empty($fields)) {
1061 1061
             foreach ($fields as $prop) {
1062
-                $propname = $prop . 's';
1062
+                $propname = $prop.'s';
1063 1063
                 if (isset($row->$propname)) {
1064 1064
                     foreach (explode("\n", $row->$propname->getValue()) as $line) {
1065 1065
                         $rdata = str_getcsv($line, ',', '"', '"');
@@ -1074,7 +1074,7 @@  discard block
 block discarded – undo
1074 1074
                             $propvals = $rdata[2];
1075 1075
                         }
1076 1076
 
1077
-                        $hit['skos:' . $prop][] = $propvals;
1077
+                        $hit['skos:'.$prop][] = $propvals;
1078 1078
                     }
1079 1079
                 }
1080 1080
             }
@@ -1150,7 +1150,7 @@  discard block
 block discarded – undo
1150 1150
      * @return array query result object
1151 1151
      */
1152 1152
     public function queryConcepts($vocabs, $fields = null, $unique = false, $params, $showDeprecated = false) {
1153
-        $query = $this->generateConceptSearchQuery($fields, $unique, $params,$showDeprecated);
1153
+        $query = $this->generateConceptSearchQuery($fields, $unique, $params, $showDeprecated);
1154 1154
         $results = $this->query($query);
1155 1155
         return $this->transformConceptSearchResults($results, $vocabs, $fields);
1156 1156
     }
@@ -1204,9 +1204,9 @@  discard block
 block discarded – undo
1204 1204
         $conditions = $this->formatFilterConditions($letter, $lang);
1205 1205
         $filtercondLabel = $conditions['filterpref'];
1206 1206
         $filtercondALabel = $conditions['filteralt'];
1207
-        $filterDeprecated="";
1208
-        if(!$showDeprecated){
1209
-            $filterDeprecated="FILTER NOT EXISTS { ?s owl:deprecated true }";
1207
+        $filterDeprecated = "";
1208
+        if (!$showDeprecated) {
1209
+            $filterDeprecated = "FILTER NOT EXISTS { ?s owl:deprecated true }";
1210 1210
         }
1211 1211
         $query = <<<EOQ
1212 1212
 SELECT DISTINCT ?s ?label ?alabel $fcl
@@ -1282,8 +1282,8 @@  discard block
 block discarded – undo
1282 1282
      * @param array $classes
1283 1283
      * @param boolean $showDeprecated whether to include deprecated concepts in the result (default: false)
1284 1284
      */
1285
-    public function queryConceptsAlphabetical($letter, $lang, $limit = null, $offset = null, $classes = null,$showDeprecated = false) {
1286
-        $query = $this->generateAlphabeticalListQuery($letter, $lang, $limit, $offset, $classes,$showDeprecated);
1285
+    public function queryConceptsAlphabetical($letter, $lang, $limit = null, $offset = null, $classes = null, $showDeprecated = false) {
1286
+        $query = $this->generateAlphabeticalListQuery($letter, $lang, $limit, $offset, $classes, $showDeprecated);
1287 1287
         $results = $this->query($query);
1288 1288
         return $this->transformAlphabeticalListResults($results);
1289 1289
     }
@@ -1617,7 +1617,7 @@  discard block
 block discarded – undo
1617 1617
                 if (!isset($row->label) || $row->label->getLang() === $lang) {
1618 1618
                     $ret[$row->object->getUri()] = $val;
1619 1619
                 } elseif ($row->label->getLang() === $fallbacklang) {
1620
-                    $val['label'] .= ' (' . $row->label->getLang() . ')';
1620
+                    $val['label'] .= ' ('.$row->label->getLang().')';
1621 1621
                     $ret[$row->object->getUri()] = $val;
1622 1622
                 }
1623 1623
             }
@@ -1713,10 +1713,10 @@  discard block
 block discarded – undo
1713 1713
 
1714 1714
             $label = null;
1715 1715
             if (isset($row->label)) {
1716
-                if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang . "-") == 0) {
1716
+                if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang."-") == 0) {
1717 1717
                     $label = $row->label->getValue();
1718 1718
                 } else {
1719
-                    $label = $row->label->getValue() . " (" . $row->label->getLang() . ")";
1719
+                    $label = $row->label->getValue()." (".$row->label->getLang().")";
1720 1720
                 }
1721 1721
 
1722 1722
             }
@@ -1792,8 +1792,8 @@  discard block
 block discarded – undo
1792 1792
         foreach ($result as $row) {
1793 1793
             if (isset($row->top) && isset($row->label)) {
1794 1794
                 $label = $row->label->getValue();
1795
-                if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang . "-") !== 0) {
1796
-                    $label .= ' (' . $row->label->getLang() . ')';
1795
+                if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang."-") !== 0) {
1796
+                    $label .= ' ('.$row->label->getLang().')';
1797 1797
                 }
1798 1798
                 $top = array('uri' => $row->top->getUri(), 'topConceptOf' => $row->topuri->getUri(), 'label' => $label, 'hasChildren' => filter_var($row->children->getValue(), FILTER_VALIDATE_BOOLEAN));
1799 1799
                 if (isset($row->notation)) {
@@ -1886,8 +1886,8 @@  discard block
 block discarded – undo
1886 1886
                 $ret[$uri]['exact'] = $row->exact->getUri();
1887 1887
             }
1888 1888
             if (isset($row->tops)) {
1889
-               $topConceptsList=array();
1890
-               $topConceptsList=explode(" ", $row->tops->getValue());
1889
+               $topConceptsList = array();
1890
+               $topConceptsList = explode(" ", $row->tops->getValue());
1891 1891
                // sort to garantee an alphabetical ordering of the URI
1892 1892
                sort($topConceptsList);
1893 1893
                $ret[$uri]['tops'] = $topConceptsList;
@@ -1900,8 +1900,8 @@  discard block
 block discarded – undo
1900 1900
                 $label = null;
1901 1901
                 if (isset($row->childlabel)) {
1902 1902
                     $label = $row->childlabel->getValue();
1903
-                    if ($row->childlabel->getLang() !== $lang && strpos($row->childlabel->getLang(), $lang . "-") !== 0) {
1904
-                        $label .= " (" . $row->childlabel->getLang() . ")";
1903
+                    if ($row->childlabel->getLang() !== $lang && strpos($row->childlabel->getLang(), $lang."-") !== 0) {
1904
+                        $label .= " (".$row->childlabel->getLang().")";
1905 1905
                     }
1906 1906
 
1907 1907
                 }
@@ -1922,8 +1922,8 @@  discard block
 block discarded – undo
1922 1922
             }
1923 1923
             if (isset($row->label)) {
1924 1924
                 $preflabel = $row->label->getValue();
1925
-                if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang . "-") !== 0) {
1926
-                    $preflabel .= ' (' . $row->label->getLang() . ')';
1925
+                if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang."-") !== 0) {
1926
+                    $preflabel .= ' ('.$row->label->getLang().')';
1927 1927
                 }
1928 1928
 
1929 1929
                 $ret[$uri]['prefLabel'] = $preflabel;
@@ -2044,9 +2044,9 @@  discard block
 block discarded – undo
2044 2044
      */
2045 2045
     private function generateConceptGroupContentsQuery($groupClass, $group, $lang, $showDeprecated = false) {
2046 2046
         $fcl = $this->generateFromClause();
2047
-        $filterDeprecated="";
2048
-        if(!$showDeprecated){
2049
-            $filterDeprecated="  FILTER NOT EXISTS { ?conc owl:deprecated true }";
2047
+        $filterDeprecated = "";
2048
+        if (!$showDeprecated) {
2049
+            $filterDeprecated = "  FILTER NOT EXISTS { ?conc owl:deprecated true }";
2050 2050
         }
2051 2051
         $query = <<<EOQ
2052 2052
 SELECT ?conc ?super ?label ?members ?type ?notation $fcl
@@ -2085,10 +2085,10 @@  discard block
 block discarded – undo
2085 2085
                     'type' => array($row->type->shorten()),
2086 2086
                 );
2087 2087
                 if (isset($row->label)) {
2088
-                    if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang . "-") == 0) {
2088
+                    if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang."-") == 0) {
2089 2089
                         $values[$row->conc->getURI()]['prefLabel'] = $row->label->getValue();
2090 2090
                     } else {
2091
-                        $values[$row->conc->getURI()]['prefLabel'] = $row->label->getValue() . " (" . $row->label->getLang() . ")";
2091
+                        $values[$row->conc->getURI()]['prefLabel'] = $row->label->getValue()." (".$row->label->getLang().")";
2092 2092
                     }
2093 2093
 
2094 2094
                 }
@@ -2116,8 +2116,8 @@  discard block
 block discarded – undo
2116 2116
      * @param boolean $showDeprecated whether to include deprecated concepts in search results
2117 2117
      * @return array Result array with concept URI as key and concept label as value
2118 2118
      */
2119
-    public function listConceptGroupContents($groupClass, $group, $lang,$showDeprecated = false) {
2120
-        $query = $this->generateConceptGroupContentsQuery($groupClass, $group, $lang,$showDeprecated);
2119
+    public function listConceptGroupContents($groupClass, $group, $lang, $showDeprecated = false) {
2120
+        $query = $this->generateConceptGroupContentsQuery($groupClass, $group, $lang, $showDeprecated);
2121 2121
         $result = $this->query($query);
2122 2122
         return $this->transformConceptGroupContentsResults($result, $lang);
2123 2123
     }
@@ -2130,7 +2130,7 @@  discard block
 block discarded – undo
2130 2130
      */
2131 2131
     private function generateChangeListQuery($lang, $offset, $prop) {
2132 2132
         $fcl = $this->generateFromClause();
2133
-        $offset = ($offset) ? 'OFFSET ' . $offset : '';
2133
+        $offset = ($offset) ? 'OFFSET '.$offset : '';
2134 2134
 
2135 2135
         $query = <<<EOQ
2136 2136
 SELECT DISTINCT ?concept ?date ?label $fcl
Please login to merge, or discard this patch.
model/DataObject.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,10 +79,12 @@
 block discarded – undo
79 79
         if ($sortable !== null) {
80 80
             uksort($sortable, array($this, 'mycompare'));
81 81
             foreach ($sortable as $prop => $vals) {
82
-                if (is_array($prop)) // the ConceptProperty objects have their own sorting methods
82
+                if (is_array($prop)) {
83
+                  // the ConceptProperty objects have their own sorting methods
83 84
                 {
84 85
                     ksort($sortable[$prop]);
85 86
                 }
87
+                }
86 88
             }
87 89
         }
88 90
         return $sortable;
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -124,8 +124,8 @@
 block discarded – undo
124 124
      */
125 125
     public function getEnvLang()
126 126
     {
127
-       // get language from locale, same as used by gettext, set by Controller
128
-       return substr(getenv("LC_ALL"), 0, 2); // @codeCoverageIgnore
127
+        // get language from locale, same as used by gettext, set by Controller
128
+        return substr(getenv("LC_ALL"), 0, 2); // @codeCoverageIgnore
129 129
     }
130 130
 
131 131
     /**
Please login to merge, or discard this patch.
model/Concept.php 3 patches
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -50,6 +50,7 @@  discard block
 block discarded – undo
50 50
      * @param Vocabulary $vocab
51 51
      * @param EasyRdf\Resource $resource
52 52
      * @param EasyRdf\Graph $graph
53
+     * @param string|null $clang
53 54
      */
54 55
     public function __construct($model, $vocab, $resource, $graph, $clang)
55 56
     {
@@ -526,6 +527,7 @@  discard block
 block discarded – undo
526 527
 
527 528
     /**
528 529
      * Gets the groups/arrays the concept belongs to.
530
+     * @param boolean $includeArrays
529 531
      */
530 532
     public function getReverseResources($includeArrays) {
531 533
         $groups = array();
Please login to merge, or discard this patch.
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -137,9 +137,9 @@  discard block
 block discarded – undo
137 137
                 return $this->resource->label($fallback);
138 138
             }
139 139
             // We need to check all the labels in case one of them matches a subtag of the current language
140
-            foreach($this->resource->allLiterals('skos:prefLabel') as $label) {
140
+            foreach ($this->resource->allLiterals('skos:prefLabel') as $label) {
141 141
                 // the label lang code is a subtag of the UI lang eg. en-GB - create a new literal with the main language
142
-                if ($label !== null && strpos($label->getLang(), $fallback . '-') === 0) {
142
+                if ($label !== null && strpos($label->getLang(), $fallback.'-') === 0) {
143 143
                     return EasyRdf\Literal::create($label, $fallback);
144 144
                 }
145 145
             }
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
 
161 161
     public function hasXlLabel($prop = 'prefLabel')
162 162
     {
163
-        if ($this->resource->hasProperty('skosxl:' . $prop)) {
163
+        if ($this->resource->hasProperty('skosxl:'.$prop)) {
164 164
             return true;
165 165
         }
166 166
         return false;
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
     public function getXlLabel()
170 170
     {
171 171
         $labels = $this->resource->allResources('skosxl:prefLabel');
172
-        foreach($labels as $labres) {
172
+        foreach ($labels as $labres) {
173 173
             $label = $labres->getLiteral('skosxl:literalForm');
174 174
             if ($label !== null && $label->getLang() == $this->clang) {
175 175
                 return new LabelSkosXL($this->model, $labres);
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
         // catch external subjects that have $res as object
277 277
         $extSubjects = $exGraph->resourcesMatching("schema:about", $res);
278 278
 
279
-        $propList =  array_unique(array_merge(
279
+        $propList = array_unique(array_merge(
280 280
             $this->DEFAULT_EXT_PROPERTIES,
281 281
             $this->getVocab()->getConfig()->getExtProperties(),
282 282
             $this->getVocab()->getConfig()->getPlugins()->getExtProperties()
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
      * @param string[] $seen Processed resources so far
302 302
      * @param string[] $props (optional) limit to these property URIs
303 303
      */
304
-    private function addExternalTriplesToGraph($res, &$seen, $props=null)
304
+    private function addExternalTriplesToGraph($res, &$seen, $props = null)
305 305
     {
306 306
         if (array_key_exists($res->getUri(), $seen) && $seen[$res->getUri()] === 0) {
307 307
             return;
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
      */
332 332
     private function addPropertyValues($res, $prop, &$seen)
333 333
     {
334
-        $resList = $res->allResources('<' . $prop . '>');
334
+        $resList = $res->allResources('<'.$prop.'>');
335 335
 
336 336
         foreach ($resList as $res2) {
337 337
             if ($res2->isBNode()) {
@@ -341,7 +341,7 @@  discard block
 block discarded – undo
341 341
             $this->addResourceReifications($res, $prop, $res2, $seen);
342 342
         }
343 343
 
344
-        $litList = $res->allLiterals('<' . $prop . '>');
344
+        $litList = $res->allLiterals('<'.$prop.'>');
345 345
 
346 346
         foreach ($litList as $lit) {
347 347
             $this->graph->addLiteral($res, $prop, $lit);
@@ -512,9 +512,9 @@  discard block
 block discarded – undo
512 512
                 // if not found in current vocabulary, look up in the default graph to be able
513 513
                 // to read an ontology loaded in a separate graph
514 514
                 // note that this imply that the property has an rdf:type declared for the query to work
515
-                if(!$proplabel) {
515
+                if (!$proplabel) {
516 516
                     $envLangLabels = $this->model->getDefaultSparql()->queryLabel($longUri, $this->getEnvLang());
517
-                    $proplabel = ($envLangLabels)?$envLangLabels[$this->getEnvLang()]:$this->model->getDefaultSparql()->queryLabel($longUri, '')[''];
517
+                    $proplabel = ($envLangLabels) ? $envLangLabels[$this->getEnvLang()] : $this->model->getDefaultSparql()->queryLabel($longUri, '')[''];
518 518
                 }
519 519
 
520 520
                 // look for superproperties in the current graph
@@ -524,12 +524,12 @@  discard block
 block discarded – undo
524 524
                 }
525 525
 
526 526
                 // also look up superprops in the default graph if not found in current vocabulary
527
-                if(!$superprops || empty($superprops)) {
527
+                if (!$superprops || empty($superprops)) {
528 528
                     $superprops = $this->model->getDefaultSparql()->querySuperProperties($longUri);
529 529
                 }
530 530
 
531 531
                 // we're reading only one super property, even if there are multiple ones
532
-                $superprop = ($superprops)?$superprops[0]:null;
532
+                $superprop = ($superprops) ? $superprops[0] : null;
533 533
                 if ($superprop) {
534 534
                     $superprop = EasyRdf\RdfNamespace::shorten($superprop) ? EasyRdf\RdfNamespace::shorten($superprop) : $superprop;
535 535
                 }
@@ -541,7 +541,7 @@  discard block
 block discarded – undo
541 541
                 }
542 542
 
543 543
                 // searching for subproperties of literals too
544
-                if($superprops) {
544
+                if ($superprops) {
545 545
                     foreach ($superprops as $subi) {
546 546
                         $suburi = EasyRdf\RdfNamespace::shorten($subi) ? EasyRdf\RdfNamespace::shorten($subi) : $subi;
547 547
                         $duplicates[$suburi] = $prop;
@@ -661,14 +661,14 @@  discard block
 block discarded – undo
661 661
 
662 662
             // making a human readable string from the timestamps
663 663
             if ($created != '') {
664
-                $ret = gettext('skosmos:created') . ' ' . (Punic\Calendar::formatDate($created, 'short'));
664
+                $ret = gettext('skosmos:created').' '.(Punic\Calendar::formatDate($created, 'short'));
665 665
             }
666 666
 
667 667
             if ($modified != '') {
668 668
                 if ($created != '') {
669
-                    $ret .= ', ' . gettext('skosmos:modified') . ' ' . (Punic\Calendar::formatDate($modified, 'short'));
669
+                    $ret .= ', '.gettext('skosmos:modified').' '.(Punic\Calendar::formatDate($modified, 'short'));
670 670
                 } else {
671
-                    $ret .= ' ' . ucfirst(gettext('skosmos:modified')) . ' ' . (Punic\Calendar::formatDate($modified, 'short'));
671
+                    $ret .= ' '.ucfirst(gettext('skosmos:modified')).' '.(Punic\Calendar::formatDate($modified, 'short'));
672 672
                 }
673 673
 
674 674
             }
@@ -676,12 +676,12 @@  discard block
 block discarded – undo
676 676
             trigger_error($e->getMessage(), E_USER_WARNING);
677 677
             $ret = '';
678 678
             if ($this->resource->get('dc:modified')) {
679
-                $modified = (string) $this->resource->get('dc:modified');
680
-                $ret = gettext('skosmos:modified') . ' ' . $modified;
679
+                $modified = (string)$this->resource->get('dc:modified');
680
+                $ret = gettext('skosmos:modified').' '.$modified;
681 681
             }
682 682
             if ($this->resource->get('dc:created')) {
683
-                $created .= (string) $this->resource->get('dc:created');
684
-                $ret .= ' ' . gettext('skosmos:created') . ' ' . $created;
683
+                $created .= (string)$this->resource->get('dc:created');
684
+                $ret .= ' '.gettext('skosmos:created').' '.$created;
685 685
             }
686 686
         }
687 687
         return $ret;
@@ -791,7 +791,7 @@  discard block
 block discarded – undo
791 791
         $ret = array();
792 792
         foreach ($labels as $lit) {
793 793
             // filtering away subsets of the current language eg. en vs en-GB
794
-            if ($lit->getLang() != $this->clang && strpos($lit->getLang(), $this->getEnvLang() . '-') !== 0) {
794
+            if ($lit->getLang() != $this->clang && strpos($lit->getLang(), $this->getEnvLang().'-') !== 0) {
795 795
                 $prop = in_array($lit, $prefLabels) ? 'skos:prefLabel' : 'skos:altLabel';
796 796
                 $ret[$this->literalLanguageToString($lit)][] = new ConceptPropertyValueLiteral($this->model, $this->vocab, $this->resource, $lit, $prop);
797 797
             }
@@ -853,10 +853,10 @@  discard block
 block discarded – undo
853 853
             }
854 854
             else if ($context[$vocabPrefix] !== $vocabUriSpace) {
855 855
                 $i = 2;
856
-                while (isset($context[$vocabPrefix . $i]) && $context[$vocabPrefix . $i] !== $vocabUriSpace) {
856
+                while (isset($context[$vocabPrefix.$i]) && $context[$vocabPrefix.$i] !== $vocabUriSpace) {
857 857
                     $i += 1;
858 858
                 }
859
-                $context[$vocabPrefix . $i] = $vocabUriSpace;
859
+                $context[$vocabPrefix.$i] = $vocabUriSpace;
860 860
             }
861 861
         }
862 862
         $compactJsonLD = \ML\JsonLD\JsonLD::compact($this->graph->serialise('jsonld'), json_encode($context));
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -312,8 +312,7 @@  discard block
 block discarded – undo
312 312
             foreach ($res->propertyUris() as $prop) {
313 313
                 $this->addPropertyValues($res, $prop, $seen);
314 314
             }
315
-        }
316
-        else {
315
+        } else {
317 316
             foreach ($props as $prop) {
318 317
                 if ($res->hasProperty($prop)) {
319 318
                     $this->addPropertyValues($res, $prop, $seen);
@@ -850,8 +849,7 @@  discard block
 block discarded – undo
850 849
         if (!in_array($vocabUriSpace, $context, true)) {
851 850
             if (!isset($context[$vocabPrefix])) {
852 851
                 $context[$vocabPrefix] = $vocabUriSpace;
853
-            }
854
-            else if ($context[$vocabPrefix] !== $vocabUriSpace) {
852
+            } else if ($context[$vocabPrefix] !== $vocabUriSpace) {
855 853
                 $i = 2;
856 854
                 while (isset($context[$vocabPrefix . $i]) && $context[$vocabPrefix . $i] !== $vocabUriSpace) {
857 855
                     $i += 1;
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 2 patches
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.
Braces   +9 added lines, -4 removed lines patch added patch discarded remove patch
@@ -108,10 +108,12 @@  discard block
 block discarded – undo
108 108
     
109 109
     private function initializeNamespaces() {
110 110
         foreach ($this->namespaces as $prefix => $fullUri) {
111
-            if ($prefix != '' && EasyRdf\RdfNamespace::get($prefix) === null) // if not already defined
111
+            if ($prefix != '' && EasyRdf\RdfNamespace::get($prefix) === null) {
112
+              // if not already defined
112 113
             {
113 114
                 EasyRdf\RdfNamespace::set($prefix, $fullUri);
114 115
             }
116
+            }
115 117
         }
116 118
     }
117 119
     
@@ -425,10 +427,12 @@  discard block
 block discarded – undo
425 427
                 // register vocabulary ids as RDF namespace prefixes
426 428
                 $prefix = preg_replace('/\W+/', '', $voc->getId()); // strip non-word characters
427 429
                 try {
428
-                    if ($prefix != '' && EasyRdf\RdfNamespace::get($prefix) === null) // if not already defined
430
+                    if ($prefix != '' && EasyRdf\RdfNamespace::get($prefix) === null) {
431
+                      // if not already defined
429 432
                     {
430 433
                         EasyRdf\RdfNamespace::set($prefix, $voc->getUriSpace());
431 434
                     }
435
+                    }
432 436
 
433 437
                 } catch (Exception $e) {
434 438
                     // not valid as namespace identifier, ignore
@@ -551,8 +555,9 @@  discard block
 block discarded – undo
551 555
         
552 556
         // no preferred vocabulary, or it was not found, search in which vocabulary the concept has a label
553 557
         foreach ($vocabs as $vocab) {
554
-            if ($vocab->getConceptLabel($uri, null) !== null)
555
-                return $vocab;
558
+            if ($vocab->getConceptLabel($uri, null) !== null) {
559
+                            return $vocab;
560
+            }
556 561
         }
557 562
 
558 563
         // if the URI couldn't be found, fall back to the first vocabulary
Please login to merge, or discard this patch.
model/ConceptPropertyValue.php 2 patches
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -12,6 +12,9 @@  discard block
 block discarded – undo
12 12
     /** content language */
13 13
     private $clang;
14 14
 
15
+    /**
16
+     * @param Model $model
17
+     */
15 18
     public function __construct($model, $vocab, $resource, $prop, $clang = '')
16 19
     {
17 20
         parent::__construct($model, $vocab, $resource);
@@ -76,6 +79,9 @@  discard block
 block discarded – undo
76 79
         return $this->vocab->getTitle();
77 80
     }
78 81
 
82
+    /**
83
+     * @param ConceptPropertyValue $member
84
+     */
79 85
     public function addSubMember($member, $lang = '')
80 86
     {
81 87
         $label = $member->getLabel($lang) ? $member->getLabel($lang) : $member->getLabel();
Please login to merge, or discard this 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/ConceptPropertyValueLiteral.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -10,6 +10,9 @@
 block discarded – undo
10 10
     /** property type */
11 11
     private $type;
12 12
 
13
+    /**
14
+     * @param EasyRdf\Resource $resource
15
+     */
13 16
     public function __construct($model, $vocab, $resource, $literal, $prop)
14 17
     {
15 18
         parent::__construct($model, $vocab, $resource);
Please login to merge, or discard this 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.