Completed
Pull Request — master (#803)
by Dan Michael O.
18:41
created
model/GlobalConfig.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,10 +109,12 @@
 block discarded – undo
109 109
      */
110 110
     private function initializeNamespaces() {
111 111
         foreach ($this->namespaces as $prefix => $fullUri) {
112
-            if ($prefix != '' && EasyRdf\RdfNamespace::get($prefix) === null) // if not already defined
112
+            if ($prefix != '' && EasyRdf\RdfNamespace::get($prefix) === null) {
113
+              // if not already defined
113 114
             {
114 115
                 EasyRdf\RdfNamespace::set($prefix, $fullUri);
115 116
             }
117
+            }
116 118
         }
117 119
     }
118 120
 
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -24,17 +24,17 @@  discard block
 block discarded – undo
24 24
     /** EasyRdf\Graph graph */
25 25
     private $graph;
26 26
 
27
-    public function __construct($config_name='/../config.ttl')
27
+    public function __construct($config_name = '/../config.ttl')
28 28
     {
29 29
         $this->cache = new Cache();
30 30
         try {
31
-            $this->filePath = realpath( dirname(__FILE__) . $config_name );
31
+            $this->filePath = realpath(dirname(__FILE__).$config_name);
32 32
             if (!file_exists($this->filePath)) {
33 33
                 throw new Exception('config.ttl file is missing, please provide one.');
34 34
             }
35 35
             $this->initializeConfig();
36 36
         } catch (Exception $e) {
37
-            echo "Error: " . $e->getMessage();
37
+            echo "Error: ".$e->getMessage();
38 38
             return;
39 39
         }
40 40
     }
@@ -55,8 +55,8 @@  discard block
 block discarded – undo
55 55
             // use APC user cache to store parsed config.ttl configuration
56 56
             if ($this->cache->isAvailable()) {
57 57
                 // @codeCoverageIgnoreStart
58
-                $key = realpath($this->filePath) . ", " . filemtime($this->filePath);
59
-                $nskey = "namespaces of " . $key;
58
+                $key = realpath($this->filePath).", ".filemtime($this->filePath);
59
+                $nskey = "namespaces of ".$key;
60 60
                 $this->graph = $this->cache->fetch($key);
61 61
                 $this->namespaces = $this->cache->fetch($nskey);
62 62
                 if ($this->graph === false || $this->namespaces === false) { // was not found in cache
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
             $this->resource = $configResources[0];
78 78
             $this->initializeNamespaces();
79 79
         } catch (Exception $e) {
80
-            echo "Error: " . $e->getMessage();
80
+            echo "Error: ".$e->getMessage();
81 81
         }      
82 82
     }
83 83
 
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
     public function getGlobalPlugins()
300 300
     {
301 301
         $globalPlugins = array();
302
-        $globalPluginsResource =  $this->getResource()->getResource("skosmos:globalPlugins");
302
+        $globalPluginsResource = $this->getResource()->getResource("skosmos:globalPlugins");
303 303
         if ($globalPluginsResource) {
304 304
             foreach ($globalPluginsResource as $resource) {
305 305
                 $globalPlugins[] = $resource->getValue();
Please login to merge, or discard this patch.
model/Model.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -219,18 +219,18 @@  discard block
 block discarded – undo
219 219
         }
220 220
 
221 221
         $vocabs = $params->getVocabs();
222
-        $showDeprecated=false;
222
+        $showDeprecated = false;
223 223
         if (sizeof($vocabs) === 1) { // search within vocabulary
224 224
             $voc = $vocabs[0];
225 225
             $sparql = $voc->getSparql();
226
-            $showDeprecated=$voc->getConfig()->getShowDeprecated();
226
+            $showDeprecated = $voc->getConfig()->getShowDeprecated();
227 227
         } else { // multi-vocabulary or global search
228 228
             $voc = null;
229 229
             $sparql = $this->getDefaultSparql();
230 230
             // @TODO : in a global search showDeprecated will always be false and cannot be set globally
231 231
         }
232 232
 
233
-        $results = $sparql->queryConcepts($vocabs, $params->getAdditionalFields(), $params->getUnique(), $params,$showDeprecated);
233
+        $results = $sparql->queryConcepts($vocabs, $params->getAdditionalFields(), $params->getUnique(), $params, $showDeprecated);
234 234
         if ($params->getRest() && $results && $params->getSearchLimit() !== 0) {
235 235
           $results = array_slice($results, $params->getOffset(), $params->getSearchLimit());
236 236
         }
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
     public function getVocabularyCategories()
383 383
     {
384 384
         $cats = $this->globalConfig->getGraph()->allOfType('skos:Concept');
385
-        if(empty($cats)) {
385
+        if (empty($cats)) {
386 386
             return array(new VocabularyCategory($this, null));
387 387
         }
388 388
 
@@ -465,9 +465,9 @@  discard block
 block discarded – undo
465 465
         }
466 466
 
467 467
         // if there are multiple vocabularies and one is the preferred vocabulary, return it
468
-        if($preferredVocabId != null) {
468
+        if ($preferredVocabId != null) {
469 469
             foreach ($vocabs as $vocab) {
470
-                if($vocab->getId() == $preferredVocabId) {
470
+                if ($vocab->getId() == $preferredVocabId) {
471 471
                     return $vocab;
472 472
                 }
473 473
             }
@@ -567,7 +567,7 @@  discard block
 block discarded – undo
567 567
         // using apc cache for the resource if available
568 568
         if ($this->globalConfig->getCache()->isAvailable()) {
569 569
             // @codeCoverageIgnoreStart
570
-            $key = 'fetch: ' . $uri;
570
+            $key = 'fetch: '.$uri;
571 571
             $resource = $this->globalConfig->getCache()->fetch($key);
572 572
             if ($resource === null || $resource === false) { // was not found in cache, or previous request failed
573 573
                 $resource = $this->fetchResourceFromUri($uri);
@@ -588,7 +588,7 @@  discard block
 block discarded – undo
588 588
      */
589 589
     public function getSparqlImplementation($dialect, $endpoint, $graph)
590 590
     {
591
-        $classname = $dialect . "Sparql";
591
+        $classname = $dialect."Sparql";
592 592
 
593 593
         return new $classname($endpoint, $graph, $this);
594 594
     }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -350,10 +350,12 @@  discard block
 block discarded – undo
350 350
                 // register vocabulary ids as RDF namespace prefixes
351 351
                 $prefix = preg_replace('/\W+/', '', $voc->getId()); // strip non-word characters
352 352
                 try {
353
-                    if ($prefix != '' && EasyRdf\RdfNamespace::get($prefix) === null) // if not already defined
353
+                    if ($prefix != '' && EasyRdf\RdfNamespace::get($prefix) === null) {
354
+                      // if not already defined
354 355
                     {
355 356
                         EasyRdf\RdfNamespace::set($prefix, $voc->getUriSpace());
356 357
                     }
358
+                    }
357 359
 
358 360
                 } catch (Exception $e) {
359 361
                     // not valid as namespace identifier, ignore
@@ -475,8 +477,9 @@  discard block
 block discarded – undo
475 477
 
476 478
         // no preferred vocabulary, or it was not found, search in which vocabulary the concept has a label
477 479
         foreach ($vocabs as $vocab) {
478
-            if ($vocab->getConceptLabel($uri, null) !== null)
479
-                return $vocab;
480
+            if ($vocab->getConceptLabel($uri, null) !== null) {
481
+                            return $vocab;
482
+            }
480 483
         }
481 484
 
482 485
         // if the URI couldn't be found, fall back to the first vocabulary
Please login to merge, or discard this patch.
model/BaseConfig.php 3 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      * @param string $default default value
43 43
      * @param string $lang preferred language for the literal
44 44
      */
45
-    protected function getLiteral($property, $default=null, $lang=null)
45
+    protected function getLiteral($property, $default = null, $lang = null)
46 46
     {
47 47
         if (!isset($lang)) {;
48 48
             $lang = $this->getEnvLang();
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,9 @@
 block discarded – undo
55 55
 
56 56
         // not found with selected language, try any language
57 57
         $literal = $this->getResource()->getLiteral($property);
58
-        if ($literal)
59
-          return $literal->getValue();
58
+        if ($literal) {
59
+                  return $literal->getValue();
60
+        }
60 61
 
61 62
         return $default;
62 63
     }
Please login to merge, or discard this patch.
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -7,11 +7,11 @@
 block discarded – undo
7 7
 abstract class BaseConfig extends DataObject
8 8
 {
9 9
 
10
-	/**
11
-     * Returns a boolean value based on a literal value from the config.ttl configuration.
12
-     * @param string $property the property to query
13
-     * @param boolean $default the default value if the value is not set in configuration
14
-     */
10
+  /**
11
+   * Returns a boolean value based on a literal value from the config.ttl configuration.
12
+   * @param string $property the property to query
13
+   * @param boolean $default the default value if the value is not set in configuration
14
+   */
15 15
     protected function getBoolean($property, $default = false)
16 16
     {
17 17
         $val = $this->getResource()->getLiteral($property);
Please login to merge, or discard this patch.
model/VocabularyConfig.php 3 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 {
8 8
     private $plugins;
9 9
 
10
-    public function __construct($resource, $globalPlugins=array())
10
+    public function __construct($resource, $globalPlugins = array())
11 11
     {
12 12
         $this->resource = $resource;
13 13
         $plugins = $this->resource->allLiterals('skosmos:usePlugin');
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         $langs = $this->getLanguages();
36 36
         $deflang = reset($langs); // picking the first one from the list with reset since the keys are not numeric
37 37
         if (sizeof($langs) > 1) {
38
-            trigger_error("Default language for vocabulary '" . $this->getShortName() . "' unknown, choosing '$deflang'.", E_USER_WARNING);
38
+            trigger_error("Default language for vocabulary '".$this->getShortName()."' unknown, choosing '$deflang'.", E_USER_WARNING);
39 39
         }
40 40
 
41 41
         return $deflang;
Please login to merge, or discard this patch.
Braces   +15 added lines, -7 removed lines patch added patch discarded remove patch
@@ -58,8 +58,9 @@  discard block
 block discarded – undo
58 58
     public function getShortName()
59 59
     {
60 60
         $shortname = $this->getLiteral('skosmos:shortName');
61
-        if ($shortname)
62
-          return $shortname;
61
+        if ($shortname) {
62
+                  return $shortname;
63
+        }
63 64
 
64 65
         // if no shortname exists fall back to the id
65 66
         return $this->getId();
@@ -194,10 +195,12 @@  discard block
 block discarded – undo
194 195
         $ret = array();
195 196
         foreach ($resources as $res) {
196 197
             $prop = $res->getURI();
197
-            if (EasyRdf\RdfNamespace::shorten($prop) !== null) // shortening property labels if possible
198
+            if (EasyRdf\RdfNamespace::shorten($prop) !== null) {
199
+              // shortening property labels if possible
198 200
             {
199 201
                 $prop = EasyRdf\RdfNamespace::shorten($prop);
200 202
             }
203
+            }
201 204
 
202 205
             $ret[] = $prop;
203 206
         }
@@ -214,10 +217,12 @@  discard block
 block discarded – undo
214 217
         $resources = $this->resource->allResources("skosmos:hasMultiLingualProperty");
215 218
         foreach ($resources as $res) {
216 219
             $prop = $res->getURI();
217
-            if (EasyRdf\RdfNamespace::shorten($prop) !== null) // shortening property labels if possible
220
+            if (EasyRdf\RdfNamespace::shorten($prop) !== null) {
221
+              // shortening property labels if possible
218 222
             {
219 223
                 $prop = EasyRdf\RdfNamespace::shorten($prop);
220 224
             }
225
+            }
221 226
 
222 227
             if ($prop === $property) {
223 228
                 return true;
@@ -329,11 +334,12 @@  discard block
 block discarded – undo
329 334
     public function getId()
330 335
     {
331 336
         $uriparts = explode("#", $this->resource->getURI());
332
-        if (count($uriparts) != 1)
333
-        // hash namespace
337
+        if (count($uriparts) != 1) {
338
+                // hash namespace
334 339
         {
335 340
             return $uriparts[1];
336 341
         }
342
+        }
337 343
 
338 344
         // slash namespace
339 345
         $uriparts = explode("/", $this->resource->getURI());
@@ -361,10 +367,12 @@  discard block
 block discarded – undo
361 367
         $ret = array();
362 368
         foreach ($resources as $res) {
363 369
             $prop = $res->getURI();
364
-            if (EasyRdf\RdfNamespace::shorten($prop) !== null) // prefixing if possible
370
+            if (EasyRdf\RdfNamespace::shorten($prop) !== null) {
371
+              // prefixing if possible
365 372
             {
366 373
                 $prop = EasyRdf\RdfNamespace::shorten($prop);
367 374
             }
375
+            }
368 376
 
369 377
             $ret[] = $prop;
370 378
         }
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
 
266 266
     /**
267 267
      * Returns a boolean value set in the config.ttl config.
268
-     * @return array array of concept class URIs (can be empty)
268
+     * @return string[] array of concept class URIs (can be empty)
269 269
      */
270 270
     public function getIndexClasses()
271 271
     {
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
 
275 275
     /**
276 276
      * Returns skosmos:externalProperty values set in the config.ttl config.
277
-     * @return array array of external property URIs (can be empty)
277
+     * @return string[] array of external property URIs (can be empty)
278 278
      */
279 279
     public function getExtProperties()
280 280
     {
@@ -420,7 +420,7 @@  discard block
 block discarded – undo
420 420
      * Additionally, the chosen content language is inserted with the highest priority
421 421
      * and the vocab default language is inserted with the lowest priority.
422 422
      * @param string $clang
423
-     * @return array of language code strings
423
+     * @return string[] of language code strings
424 424
      */
425 425
     public function getLanguageOrder($clang)
426 426
     {
Please login to merge, or discard this patch.
migrate-config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
     foreach (explode(' ', GLOBAL_PLUGINS) as $pluginName) {
85 85
         $globalPluginsArray[] = "\"$pluginName\"";
86 86
     }
87
-    $globalPlugins = " " . implode(', ', $globalPluginsArray) . " ";
87
+    $globalPlugins = " ".implode(', ', $globalPluginsArray)." ";
88 88
 }
89 89
 
90 90
 # print the prefixes
Please login to merge, or discard this patch.
model/ConceptProperty.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
      * @param string $prop property type eg. 'rdf:type'.
23 23
      * @param string $label
24 24
      */
25
-    public function __construct($prop, $label, $super=null, $sort_by_notation=false)
25
+    public function __construct($prop, $label, $super = null, $sort_by_notation = false)
26 26
     {
27 27
         $this->prop = $prop;
28 28
         $this->label = $label;
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      */
62 62
     public function getDescription()
63 63
     {
64
-        $helpprop = $this->prop . "_help";
64
+        $helpprop = $this->prop."_help";
65 65
 
66 66
         return gettext($helpprop); // can't use string constant, it'd be picked up by xgettext
67 67
     }
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 
81 81
     public function addValue($value)
82 82
     {
83
-        $this->values[$value->getNotation() . $value->getLabel() . $value->getUri()] = $value;
83
+        $this->values[$value->getNotation().$value->getLabel().$value->getUri()] = $value;
84 84
         $this->is_sorted = false;
85 85
     }
86 86
 
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     {
89 89
         if (!empty($this->values)) {
90 90
             uksort($this->values, function($a, $b) {
91
-                return $this->sort_by_notation ? strnatcasecmp($a, $b) : strcoll(strtolower($a),strtolower($b));
91
+                return $this->sort_by_notation ? strnatcasecmp($a, $b) : strcoll(strtolower($a), strtolower($b));
92 92
             });
93 93
         }
94 94
         $this->is_sorted = true;
Please login to merge, or discard this patch.
model/ConceptMappingPropertyValue.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     {
37 37
         $label = $this->getLabel();
38 38
         $notation = $this->getNotation();
39
-        return $notation . $label;
39
+        return $notation.$label;
40 40
     }
41 41
 
42 42
     public function getType()
@@ -172,14 +172,14 @@  discard block
 block discarded – undo
172 172
             'from' => [
173 173
                 'memberSet' => [
174 174
                     [
175
-                        'uri' => (string) $this->source->getUri(),
175
+                        'uri' => (string)$this->source->getUri(),
176 176
                     ]
177 177
                 ]
178 178
             ],
179 179
             'to' => [
180 180
                 'memberSet' => [
181 181
                     [
182
-                        'uri' => (string) $this->getUri()
182
+                        'uri' => (string)$this->getUri()
183 183
                     ]
184 184
                 ]
185 185
             ]
@@ -188,20 +188,20 @@  discard block
 block discarded – undo
188 188
         $fromScheme = $this->vocab->getDefaultConceptScheme();
189 189
         if (isset($fromScheme)) {
190 190
             $ret['fromScheme'] = [
191
-                'uri' => (string) $fromScheme,
191
+                'uri' => (string)$fromScheme,
192 192
             ];
193 193
         }
194 194
 
195 195
         $exvocab = $this->getExvocab();
196 196
         if (isset($exvocab)) {
197 197
             $ret['toScheme'] = [
198
-                'uri' => (string) $exvocab->getDefaultConceptScheme(),
198
+                'uri' => (string)$exvocab->getDefaultConceptScheme(),
199 199
             ];
200 200
         }
201 201
 
202 202
         $notation = $this->getNotation();
203 203
         if (isset($notation)) {
204
-            $ret['to']['memberSet'][0]['notation'] = (string) $notation;
204
+            $ret['to']['memberSet'][0]['notation'] = (string)$notation;
205 205
         }
206 206
 
207 207
         $label = $this->getLabel();
Please login to merge, or discard this patch.
rest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     } elseif ($parts[1] == 'mappings') {
35 35
         $controller->mappings($request);
36 36
     } elseif (sizeof($parts) == 2) {
37
-        header("Location: " . $parts[1] . "/");
37
+        header("Location: ".$parts[1]."/");
38 38
     } else {
39 39
         $vocab = $parts[1];
40 40
         try {
@@ -90,5 +90,5 @@  discard block
 block discarded – undo
90 90
     }
91 91
 } catch (Exception $e) {
92 92
     header("HTTP/1.0 500 Internal Server Error");
93
-    echo('ERROR: ' . $e->getMessage());
93
+    echo('ERROR: '.$e->getMessage());
94 94
 }
Please login to merge, or discard this patch.