Completed
Push — master ( b8bd6f...1e9f36 )
by Henri
02:10
created
model/Concept.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -121,9 +121,9 @@  discard block
 block discarded – undo
121 121
 
122 122
         // 3. label in a subtag of the current language
123 123
         // We need to check all the labels in case one of them matches a subtag of the current language
124
-        foreach($this->resource->allLiterals('skos:prefLabel') as $label) {
124
+        foreach ($this->resource->allLiterals('skos:prefLabel') as $label) {
125 125
             // the label lang code is a subtag of the UI lang eg. en-GB - create a new literal with the main language
126
-            if ($label !== null && strpos($label->getLang(), $lang . '-') === 0) {
126
+            if ($label !== null && strpos($label->getLang(), $lang.'-') === 0) {
127 127
                 return EasyRdf_Literal::create($label, $lang);
128 128
             }
129 129
         }
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
         // 4. label in any language, including literal with empty language tag
132 132
         $label = $this->resource->label();
133 133
         if ($label !== null) {
134
-            return $label->getLang() ? $label->getValue() . " (" . $label->getLang() . ")" : $label->getValue();
134
+            return $label->getLang() ? $label->getValue()." (".$label->getLang().")" : $label->getValue();
135 135
         }
136 136
 
137 137
         // empty
@@ -462,14 +462,14 @@  discard block
 block discarded – undo
462 462
 
463 463
             // making a human readable string from the timestamps
464 464
             if ($created != '') {
465
-                $ret = gettext('skosmos:created') . ' ' . (Punic\Calendar::formatDate($created, 'short'));
465
+                $ret = gettext('skosmos:created').' '.(Punic\Calendar::formatDate($created, 'short'));
466 466
             }
467 467
 
468 468
             if ($modified != '') {
469 469
                 if ($created != '') {
470
-                    $ret .= ', ' . gettext('skosmos:modified') . ' ' . (Punic\Calendar::formatDate($modified, 'short'));
470
+                    $ret .= ', '.gettext('skosmos:modified').' '.(Punic\Calendar::formatDate($modified, 'short'));
471 471
                 } else {
472
-                    $ret .= ' ' . ucfirst(gettext('skosmos:modified')) . ' ' . (Punic\Calendar::formatDate($modified, 'short'));
472
+                    $ret .= ' '.ucfirst(gettext('skosmos:modified')).' '.(Punic\Calendar::formatDate($modified, 'short'));
473 473
                 }
474 474
 
475 475
             }
@@ -477,12 +477,12 @@  discard block
 block discarded – undo
477 477
             trigger_error($e->getMessage(), E_USER_WARNING);
478 478
             $ret = '';
479 479
             if ($this->resource->get('dc:modified')) {
480
-                $modified = (string) $this->resource->get('dc:modified');
481
-                $ret = gettext('skosmos:modified') . ' ' . $modified; 
480
+                $modified = (string)$this->resource->get('dc:modified');
481
+                $ret = gettext('skosmos:modified').' '.$modified; 
482 482
             }
483 483
             if ($this->resource->get('dc:created')) {
484
-                $created .= (string) $this->resource->get('dc:created');
485
-                $ret .= ' ' . gettext('skosmos:created') . ' ' . $created; 
484
+                $created .= (string)$this->resource->get('dc:created');
485
+                $ret .= ' '.gettext('skosmos:created').' '.$created; 
486 486
             }
487 487
         }
488 488
         return $ret;
@@ -592,7 +592,7 @@  discard block
 block discarded – undo
592 592
         $ret = array();
593 593
         foreach ($labels as $lit) {
594 594
             // filtering away subsets of the current language eg. en vs en-GB
595
-            if ($lit->getLang() != $this->clang && strpos($lit->getLang(), $this->getEnvLang() . '-') !== 0) {
595
+            if ($lit->getLang() != $this->clang && strpos($lit->getLang(), $this->getEnvLang().'-') !== 0) {
596 596
                 $prop = in_array($lit, $prefLabels) ? 'skos:prefLabel' : 'skos:altLabel'; 
597 597
                 $ret[$this->literalLanguageToString($lit)][] = new ConceptPropertyValueLiteral($lit, $prop);
598 598
             }
Please login to merge, or discard this patch.
model/sparql/GenericSparql.php 1 patch
Spacing   +33 added lines, -33 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;
@@ -698,7 +698,7 @@  discard block
 block discarded – undo
698 698
         foreach ($graphs as $graph) {
699 699
           $values[] = "<$graph>";
700 700
         }
701
-        return "FILTER (?graph IN (" . implode(',', $values) . "))";
701
+        return "FILTER (?graph IN (".implode(',', $values)."))";
702 702
     }
703 703
 
704 704
     /**
@@ -708,16 +708,16 @@  discard block
 block discarded – undo
708 708
      * @return string sparql query clauses
709 709
      */
710 710
     protected function formatLimitAndOffset($limit, $offset) {
711
-        $limit = ($limit) ? 'LIMIT ' . $limit : '';
712
-        $offset = ($offset) ? 'OFFSET ' . $offset : '';
711
+        $limit = ($limit) ? 'LIMIT '.$limit : '';
712
+        $offset = ($offset) ? 'OFFSET '.$offset : '';
713 713
         // eliminating whitespace and line changes when the conditions aren't needed.
714 714
         $limitandoffset = '';
715 715
         if ($limit && $offset) {
716
-            $limitandoffset = "\n" . $limit . "\n" . $offset;
716
+            $limitandoffset = "\n".$limit."\n".$offset;
717 717
         } elseif ($limit) {
718
-            $limitandoffset = "\n" . $limit;
718
+            $limitandoffset = "\n".$limit;
719 719
         } elseif ($offset) {
720
-            $limitandoffset = "\n" . $offset;
720
+            $limitandoffset = "\n".$offset;
721 721
         }
722 722
 
723 723
         return $limitandoffset;
@@ -737,7 +737,7 @@  discard block
 block discarded – undo
737 737
             }
738 738
         }
739 739
 
740
-        return implode(' UNION ', $typePatterns);;
740
+        return implode(' UNION ', $typePatterns); ;
741 741
     }
742 742
 
743 743
     /**
@@ -869,14 +869,14 @@  discard block
 block discarded – undo
869 869
         // if search language and UI/display language differ, must also consider case where there is no prefLabel in
870 870
         // the display language; in that case, should use the label with the same language as the matched label
871 871
         $labelcondFallback = ($searchLang != $lang) ?
872
-          "OPTIONAL { # in case previous OPTIONAL block gives no labels\n" .
872
+          "OPTIONAL { # in case previous OPTIONAL block gives no labels\n".
873 873
           "?s skos:prefLabel ?label . FILTER (LANGMATCHES(LANG(?label), LANG(?match))) }" : "";
874 874
           
875 875
         //  Including the labels if there is no query term given.
876 876
         if ($rawterm === '') {
877 877
           $labelClause = "?s skos:prefLabel ?label .";
878
-          $labelClause = ($lang) ? $labelClause . " FILTER (LANGMATCHES(LANG(?label), '$lang'))" : $labelClause . "";
879
-          return $labelClause . " BIND(?label AS ?match)";
878
+          $labelClause = ($lang) ? $labelClause." FILTER (LANGMATCHES(LANG(?label), '$lang'))" : $labelClause."";
879
+          return $labelClause." BIND(?label AS ?match)";
880 880
         }
881 881
 
882 882
         /*
@@ -937,15 +937,15 @@  discard block
 block discarded – undo
937 937
 
938 938
         $schemecond = '';
939 939
         if (!empty($schemes)) {
940
-            foreach($schemes as $scheme) {
940
+            foreach ($schemes as $scheme) {
941 941
                 $schemecond .= "?s skos:inScheme <$scheme> . ";
942 942
             }
943 943
         }
944 944
 
945 945
         // extra conditions for parent and group, if specified
946
-        $parentcond = ($params->getParentLimit()) ? "?s skos:broader+ <" . $params->getParentLimit() . "> ." : "";
947
-        $groupcond = ($params->getGroupLimit()) ? "<" . $params->getGroupLimit() . "> skos:member ?s ." : "";
948
-        $pgcond = $parentcond . $groupcond;
946
+        $parentcond = ($params->getParentLimit()) ? "?s skos:broader+ <".$params->getParentLimit()."> ." : "";
947
+        $groupcond = ($params->getGroupLimit()) ? "<".$params->getGroupLimit()."> skos:member ?s ." : "";
948
+        $pgcond = $parentcond.$groupcond;
949 949
 
950 950
         $orderextra = $this->isDefaultEndpoint() ? $this->graph : '';
951 951
 
@@ -1018,9 +1018,9 @@  discard block
 block discarded – undo
1018 1018
             $hit['type'][] = $this->shortenUri($typeuri);
1019 1019
         }
1020 1020
 
1021
-        if(!empty($fields)) {
1021
+        if (!empty($fields)) {
1022 1022
             foreach ($fields as $prop) {
1023
-                $propname = $prop . 's';
1023
+                $propname = $prop.'s';
1024 1024
                 if (isset($row->$propname)) {
1025 1025
                     foreach (explode("\n", $row->$propname->getValue()) as $line) {
1026 1026
                         $rdata = str_getcsv($line, ',', '"', '"');
@@ -1035,7 +1035,7 @@  discard block
 block discarded – undo
1035 1035
                             $propvals = $rdata[2];
1036 1036
                         }
1037 1037
 
1038
-                        $hit['skos:' . $prop][] = $propvals;
1038
+                        $hit['skos:'.$prop][] = $propvals;
1039 1039
                     }
1040 1040
                 }
1041 1041
             }
@@ -1495,7 +1495,7 @@  discard block
 block discarded – undo
1495 1495
                 if (!isset($row->label) || $row->label->getLang() === $lang) {
1496 1496
                     $ret[$row->object->getUri()] = $val;
1497 1497
                 } elseif ($row->label->getLang() === $fallbacklang) {
1498
-                    $val['label'] .= ' (' . $row->label->getLang() . ')';
1498
+                    $val['label'] .= ' ('.$row->label->getLang().')';
1499 1499
                     $ret[$row->object->getUri()] = $val;
1500 1500
                 }
1501 1501
             }
@@ -1591,10 +1591,10 @@  discard block
 block discarded – undo
1591 1591
 
1592 1592
             $label = null;
1593 1593
             if (isset($row->label)) {
1594
-                if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang . "-") == 0) {
1594
+                if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang."-") == 0) {
1595 1595
                     $label = $row->label->getValue();
1596 1596
                 } else {
1597
-                    $label = $row->label->getValue() . " (" . $row->label->getLang() . ")";
1597
+                    $label = $row->label->getValue()." (".$row->label->getLang().")";
1598 1598
                 }
1599 1599
 
1600 1600
             }
@@ -1670,8 +1670,8 @@  discard block
 block discarded – undo
1670 1670
         foreach ($result as $row) {
1671 1671
             if (isset($row->top) && isset($row->label)) {
1672 1672
                 $label = $row->label->getValue();
1673
-                if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang . "-") !== 0) {
1674
-                    $label .= ' (' . $row->label->getLang() . ')';
1673
+                if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang."-") !== 0) {
1674
+                    $label .= ' ('.$row->label->getLang().')';
1675 1675
                 }
1676 1676
                 $top = array('uri' => $row->top->getUri(), 'topConceptOf' => $row->topuri->getUri(), 'label' => $label, 'hasChildren' => filter_var($row->children->getValue(), FILTER_VALIDATE_BOOLEAN));
1677 1677
                 if (isset($row->notation)) {
@@ -1772,8 +1772,8 @@  discard block
 block discarded – undo
1772 1772
                 $label = null;
1773 1773
                 if (isset($row->childlabel)) {
1774 1774
                     $label = $row->childlabel->getValue();
1775
-                    if ($row->childlabel->getLang() !== $lang && strpos($row->childlabel->getLang(), $lang . "-") !== 0) {
1776
-                        $label .= " (" . $row->childlabel->getLang() . ")";
1775
+                    if ($row->childlabel->getLang() !== $lang && strpos($row->childlabel->getLang(), $lang."-") !== 0) {
1776
+                        $label .= " (".$row->childlabel->getLang().")";
1777 1777
                     }
1778 1778
 
1779 1779
                 }
@@ -1794,8 +1794,8 @@  discard block
 block discarded – undo
1794 1794
             }
1795 1795
             if (isset($row->label)) {
1796 1796
                 $preflabel = $row->label->getValue();
1797
-                if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang . "-") !== 0) {
1798
-                    $preflabel .= ' (' . $row->label->getLang() . ')';
1797
+                if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang."-") !== 0) {
1798
+                    $preflabel .= ' ('.$row->label->getLang().')';
1799 1799
                 }
1800 1800
 
1801 1801
                 $ret[$uri]['prefLabel'] = $preflabel;
@@ -1952,10 +1952,10 @@  discard block
 block discarded – undo
1952 1952
                     'type' => array($row->type->shorten()),
1953 1953
                 );
1954 1954
                 if (isset($row->label)) {
1955
-                    if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang . "-") == 0) {
1955
+                    if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang."-") == 0) {
1956 1956
                         $values[$row->conc->getURI()]['prefLabel'] = $row->label->getValue();
1957 1957
                     } else {
1958
-                        $values[$row->conc->getURI()]['prefLabel'] = $row->label->getValue() . " (" . $row->label->getLang() . ")";
1958
+                        $values[$row->conc->getURI()]['prefLabel'] = $row->label->getValue()." (".$row->label->getLang().")";
1959 1959
                     }
1960 1960
 
1961 1961
                 }
@@ -1996,7 +1996,7 @@  discard block
 block discarded – undo
1996 1996
      */
1997 1997
     private function generateChangeListQuery($lang, $offset, $prop) {
1998 1998
         $fcl = $this->generateFromClause();
1999
-        $offset = ($offset) ? 'OFFSET ' . $offset : '';
1999
+        $offset = ($offset) ? 'OFFSET '.$offset : '';
2000 2000
 
2001 2001
         $query = <<<EOQ
2002 2002
 SELECT DISTINCT ?concept ?date ?label $fcl
Please login to merge, or discard this patch.
model/Model.php 1 patch
Spacing   +7 added lines, -7 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
 
@@ -456,7 +456,7 @@  discard block
 block discarded – undo
456 456
     public function getVocabularyCategories()
457 457
     {
458 458
         $cats = $this->graph->allOfType('skos:Concept');
459
-        if(empty($cats)) {
459
+        if (empty($cats)) {
460 460
             return array(new VocabularyCategory($this, null));
461 461
         }
462 462
 
@@ -629,7 +629,7 @@  discard block
 block discarded – undo
629 629
         // using apc cache for the resource if available
630 630
         if ($this->cache->isAvailable()) {
631 631
             // @codeCoverageIgnoreStart
632
-            $key = 'fetch: ' . $uri;
632
+            $key = 'fetch: '.$uri;
633 633
             $resource = $this->cache->fetch($key);
634 634
             if ($resource === null || $resource === false) { // was not found in cache, or previous request failed
635 635
                 $resource = $this->fetchResourceFromUri($uri);
@@ -650,7 +650,7 @@  discard block
 block discarded – undo
650 650
      */
651 651
     public function getSparqlImplementation($dialect, $endpoint, $graph)
652 652
     {
653
-        $classname = $dialect . "Sparql";
653
+        $classname = $dialect."Sparql";
654 654
 
655 655
         return new $classname($endpoint, $graph, $this);
656 656
     }
Please login to merge, or discard this patch.