Completed
Push — master ( 60724f...42b01e )
by Henri
02:30
created
model/sparql/JenaTextSparql.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         // 1. Ensure characters with special meaning in Lucene are escaped
40 40
         $lucenemap = array();
41 41
         foreach (str_split(self::LUCENE_ESCAPE_CHARS) as $char) {
42
-            $lucenemap[$char] = '\\' . $char; // escape with a backslash
42
+            $lucenemap[$char] = '\\'.$char; // escape with a backslash
43 43
         }
44 44
         $term = strtr($term, $lucenemap);
45 45
 
@@ -98,12 +98,12 @@  discard block
 block discarded – undo
98 98
 
99 99
         # make text query clause
100 100
         $lcletter = mb_strtolower($letter, 'UTF-8'); // convert to lower case, UTF-8 safe
101
-        $textcondPref = $this->createTextQueryCondition($letter . '*', 'skos:prefLabel', $lang);
102
-        $textcondAlt = $this->createTextQueryCondition($letter . '*', 'skos:altLabel', $lang);
101
+        $textcondPref = $this->createTextQueryCondition($letter.'*', 'skos:prefLabel', $lang);
102
+        $textcondAlt = $this->createTextQueryCondition($letter.'*', 'skos:altLabel', $lang);
103 103
 
104
-        $filterDeprecated="";
105
-        if(!$showDeprecated){
106
-            $filterDeprecated="FILTER NOT EXISTS { ?s owl:deprecated true }";
104
+        $filterDeprecated = "";
105
+        if (!$showDeprecated) {
106
+            $filterDeprecated = "FILTER NOT EXISTS { ?s owl:deprecated true }";
107 107
         }
108 108
         
109 109
         $query = <<<EOQ
Please login to merge, or discard this patch.
model/sparql/GenericSparql.php 1 patch
Spacing   +47 added lines, -47 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
         /*
@@ -938,19 +938,19 @@  discard block
 block discarded – undo
938 938
 
939 939
         $schemecond = '';
940 940
         if (!empty($schemes)) {
941
-            foreach($schemes as $scheme) {
941
+            foreach ($schemes as $scheme) {
942 942
                 $schemecond .= "?s skos:inScheme <$scheme> . ";
943 943
             }
944 944
         }
945
-        $filterDeprecated="";
945
+        $filterDeprecated = "";
946 946
         //show or hide deprecated concepts
947
-        if(!$showDeprecated){
948
-            $filterDeprecated="FILTER NOT EXISTS { ?s owl:deprecated true }";
947
+        if (!$showDeprecated) {
948
+            $filterDeprecated = "FILTER NOT EXISTS { ?s owl:deprecated true }";
949 949
         }
950 950
         // extra conditions for parent and group, if specified
951
-        $parentcond = ($params->getParentLimit()) ? "?s skos:broader+ <" . $params->getParentLimit() . "> ." : "";
952
-        $groupcond = ($params->getGroupLimit()) ? "<" . $params->getGroupLimit() . "> skos:member ?s ." : "";
953
-        $pgcond = $parentcond . $groupcond;
951
+        $parentcond = ($params->getParentLimit()) ? "?s skos:broader+ <".$params->getParentLimit()."> ." : "";
952
+        $groupcond = ($params->getGroupLimit()) ? "<".$params->getGroupLimit()."> skos:member ?s ." : "";
953
+        $pgcond = $parentcond.$groupcond;
954 954
 
955 955
         $orderextra = $this->isDefaultEndpoint() ? $this->graph : '';
956 956
 
@@ -1023,9 +1023,9 @@  discard block
 block discarded – undo
1023 1023
             $hit['type'][] = $this->shortenUri($typeuri);
1024 1024
         }
1025 1025
 
1026
-        if(!empty($fields)) {
1026
+        if (!empty($fields)) {
1027 1027
             foreach ($fields as $prop) {
1028
-                $propname = $prop . 's';
1028
+                $propname = $prop.'s';
1029 1029
                 if (isset($row->$propname)) {
1030 1030
                     foreach (explode("\n", $row->$propname->getValue()) as $line) {
1031 1031
                         $rdata = str_getcsv($line, ',', '"', '"');
@@ -1040,7 +1040,7 @@  discard block
 block discarded – undo
1040 1040
                             $propvals = $rdata[2];
1041 1041
                         }
1042 1042
 
1043
-                        $hit['skos:' . $prop][] = $propvals;
1043
+                        $hit['skos:'.$prop][] = $propvals;
1044 1044
                     }
1045 1045
                 }
1046 1046
             }
@@ -1116,7 +1116,7 @@  discard block
 block discarded – undo
1116 1116
      * @return array query result object
1117 1117
      */
1118 1118
     public function queryConcepts($vocabs, $fields = null, $unique = false, $params, $showDeprecated = false) {
1119
-        $query = $this->generateConceptSearchQuery($fields, $unique, $params,$showDeprecated);
1119
+        $query = $this->generateConceptSearchQuery($fields, $unique, $params, $showDeprecated);
1120 1120
         $results = $this->query($query);
1121 1121
         return $this->transformConceptSearchResults($results, $vocabs, $fields);
1122 1122
     }
@@ -1170,9 +1170,9 @@  discard block
 block discarded – undo
1170 1170
         $conditions = $this->formatFilterConditions($letter, $lang);
1171 1171
         $filtercondLabel = $conditions['filterpref'];
1172 1172
         $filtercondALabel = $conditions['filteralt'];
1173
-        $filterDeprecated="";
1174
-        if(!$showDeprecated){
1175
-            $filterDeprecated="FILTER NOT EXISTS { ?s owl:deprecated true }";
1173
+        $filterDeprecated = "";
1174
+        if (!$showDeprecated) {
1175
+            $filterDeprecated = "FILTER NOT EXISTS { ?s owl:deprecated true }";
1176 1176
         }
1177 1177
         $query = <<<EOQ
1178 1178
 SELECT DISTINCT ?s ?label ?alabel $fcl
@@ -1248,8 +1248,8 @@  discard block
 block discarded – undo
1248 1248
      * @param array $classes
1249 1249
      * @param boolean $showDeprecated whether to include deprecated concepts in the result (default: false)
1250 1250
      */
1251
-    public function queryConceptsAlphabetical($letter, $lang, $limit = null, $offset = null, $classes = null,$showDeprecated = false) {
1252
-        $query = $this->generateAlphabeticalListQuery($letter, $lang, $limit, $offset, $classes,$showDeprecated);
1251
+    public function queryConceptsAlphabetical($letter, $lang, $limit = null, $offset = null, $classes = null, $showDeprecated = false) {
1252
+        $query = $this->generateAlphabeticalListQuery($letter, $lang, $limit, $offset, $classes, $showDeprecated);
1253 1253
         $results = $this->query($query);
1254 1254
         return $this->transformAlphabeticalListResults($results);
1255 1255
     }
@@ -1541,7 +1541,7 @@  discard block
 block discarded – undo
1541 1541
                 if (!isset($row->label) || $row->label->getLang() === $lang) {
1542 1542
                     $ret[$row->object->getUri()] = $val;
1543 1543
                 } elseif ($row->label->getLang() === $fallbacklang) {
1544
-                    $val['label'] .= ' (' . $row->label->getLang() . ')';
1544
+                    $val['label'] .= ' ('.$row->label->getLang().')';
1545 1545
                     $ret[$row->object->getUri()] = $val;
1546 1546
                 }
1547 1547
             }
@@ -1637,10 +1637,10 @@  discard block
 block discarded – undo
1637 1637
 
1638 1638
             $label = null;
1639 1639
             if (isset($row->label)) {
1640
-                if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang . "-") == 0) {
1640
+                if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang."-") == 0) {
1641 1641
                     $label = $row->label->getValue();
1642 1642
                 } else {
1643
-                    $label = $row->label->getValue() . " (" . $row->label->getLang() . ")";
1643
+                    $label = $row->label->getValue()." (".$row->label->getLang().")";
1644 1644
                 }
1645 1645
 
1646 1646
             }
@@ -1716,8 +1716,8 @@  discard block
 block discarded – undo
1716 1716
         foreach ($result as $row) {
1717 1717
             if (isset($row->top) && isset($row->label)) {
1718 1718
                 $label = $row->label->getValue();
1719
-                if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang . "-") !== 0) {
1720
-                    $label .= ' (' . $row->label->getLang() . ')';
1719
+                if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang."-") !== 0) {
1720
+                    $label .= ' ('.$row->label->getLang().')';
1721 1721
                 }
1722 1722
                 $top = array('uri' => $row->top->getUri(), 'topConceptOf' => $row->topuri->getUri(), 'label' => $label, 'hasChildren' => filter_var($row->children->getValue(), FILTER_VALIDATE_BOOLEAN));
1723 1723
                 if (isset($row->notation)) {
@@ -1818,8 +1818,8 @@  discard block
 block discarded – undo
1818 1818
                 $label = null;
1819 1819
                 if (isset($row->childlabel)) {
1820 1820
                     $label = $row->childlabel->getValue();
1821
-                    if ($row->childlabel->getLang() !== $lang && strpos($row->childlabel->getLang(), $lang . "-") !== 0) {
1822
-                        $label .= " (" . $row->childlabel->getLang() . ")";
1821
+                    if ($row->childlabel->getLang() !== $lang && strpos($row->childlabel->getLang(), $lang."-") !== 0) {
1822
+                        $label .= " (".$row->childlabel->getLang().")";
1823 1823
                     }
1824 1824
 
1825 1825
                 }
@@ -1840,8 +1840,8 @@  discard block
 block discarded – undo
1840 1840
             }
1841 1841
             if (isset($row->label)) {
1842 1842
                 $preflabel = $row->label->getValue();
1843
-                if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang . "-") !== 0) {
1844
-                    $preflabel .= ' (' . $row->label->getLang() . ')';
1843
+                if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang."-") !== 0) {
1844
+                    $preflabel .= ' ('.$row->label->getLang().')';
1845 1845
                 }
1846 1846
 
1847 1847
                 $ret[$uri]['prefLabel'] = $preflabel;
@@ -1962,9 +1962,9 @@  discard block
 block discarded – undo
1962 1962
      */
1963 1963
     private function generateConceptGroupContentsQuery($groupClass, $group, $lang, $showDeprecated = false) {
1964 1964
         $fcl = $this->generateFromClause();
1965
-        $filterDeprecated="";
1966
-        if(!$showDeprecated){
1967
-            $filterDeprecated="  FILTER NOT EXISTS { ?conc owl:deprecated true }";
1965
+        $filterDeprecated = "";
1966
+        if (!$showDeprecated) {
1967
+            $filterDeprecated = "  FILTER NOT EXISTS { ?conc owl:deprecated true }";
1968 1968
         }
1969 1969
         $query = <<<EOQ
1970 1970
 SELECT ?conc ?super ?label ?members ?type ?notation $fcl
@@ -2003,10 +2003,10 @@  discard block
 block discarded – undo
2003 2003
                     'type' => array($row->type->shorten()),
2004 2004
                 );
2005 2005
                 if (isset($row->label)) {
2006
-                    if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang . "-") == 0) {
2006
+                    if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang."-") == 0) {
2007 2007
                         $values[$row->conc->getURI()]['prefLabel'] = $row->label->getValue();
2008 2008
                     } else {
2009
-                        $values[$row->conc->getURI()]['prefLabel'] = $row->label->getValue() . " (" . $row->label->getLang() . ")";
2009
+                        $values[$row->conc->getURI()]['prefLabel'] = $row->label->getValue()." (".$row->label->getLang().")";
2010 2010
                     }
2011 2011
 
2012 2012
                 }
@@ -2034,8 +2034,8 @@  discard block
 block discarded – undo
2034 2034
      * @param boolean $showDeprecated whether to include deprecated concepts in search results
2035 2035
      * @return array Result array with concept URI as key and concept label as value
2036 2036
      */
2037
-    public function listConceptGroupContents($groupClass, $group, $lang,$showDeprecated = false) {
2038
-        $query = $this->generateConceptGroupContentsQuery($groupClass, $group, $lang,$showDeprecated);
2037
+    public function listConceptGroupContents($groupClass, $group, $lang, $showDeprecated = false) {
2038
+        $query = $this->generateConceptGroupContentsQuery($groupClass, $group, $lang, $showDeprecated);
2039 2039
         $result = $this->query($query);
2040 2040
         return $this->transformConceptGroupContentsResults($result, $lang);
2041 2041
     }
@@ -2048,7 +2048,7 @@  discard block
 block discarded – undo
2048 2048
      */
2049 2049
     private function generateChangeListQuery($lang, $offset, $prop) {
2050 2050
         $fcl = $this->generateFromClause();
2051
-        $offset = ($offset) ? 'OFFSET ' . $offset : '';
2051
+        $offset = ($offset) ? 'OFFSET '.$offset : '';
2052 2052
 
2053 2053
         $query = <<<EOQ
2054 2054
 SELECT DISTINCT ?concept ?date ?label $fcl
Please login to merge, or discard this patch.
model/Model.php 1 patch
Spacing   +10 added lines, -10 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
 
@@ -631,7 +631,7 @@  discard block
 block discarded – undo
631 631
         // using apc cache for the resource if available
632 632
         if ($this->cache->isAvailable()) {
633 633
             // @codeCoverageIgnoreStart
634
-            $key = 'fetch: ' . $uri;
634
+            $key = 'fetch: '.$uri;
635 635
             $resource = $this->cache->fetch($key);
636 636
             if ($resource === null || $resource === false) { // was not found in cache, or previous request failed
637 637
                 $resource = $this->fetchResourceFromUri($uri);
@@ -652,7 +652,7 @@  discard block
 block discarded – undo
652 652
      */
653 653
     public function getSparqlImplementation($dialect, $endpoint, $graph)
654 654
     {
655
-        $classname = $dialect . "Sparql";
655
+        $classname = $dialect."Sparql";
656 656
 
657 657
         return new $classname($endpoint, $graph, $this);
658 658
     }
Please login to merge, or discard this patch.
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.