Completed
Pull Request — master (#803)
by Dan Michael O.
04:27 queued 01:30
created
controller/WebController.php 2 patches
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -307,11 +307,17 @@
 block discarded – undo
307 307
         $subject = $this->model->getConfig()->getServiceName() . " feedback";
308 308
         // determine the sender address of the message
309 309
         $sender = $this->model->getConfig()->getFeedbackSender();
310
-        if (empty($sender)) $sender = $envelopeSender;
311
-        if (empty($sender)) $sender = $this->model->getConfig()->getFeedbackAddress();
310
+        if (empty($sender)) {
311
+          $sender = $envelopeSender;
312
+        }
313
+        if (empty($sender)) {
314
+          $sender = $this->model->getConfig()->getFeedbackAddress();
315
+        }
312 316
 
313 317
         // determine sender name - default to "anonymous user" if not given by user
314
-        if (empty($fromName)) $fromName = "anonymous user";
318
+        if (empty($fromName)) {
319
+          $fromName = "anonymous user";
320
+        }
315 321
 
316 322
         $headers = $this->createFeedbackHeaders($fromName, $fromEmail, $toMail, $sender);
317 323
         $params = empty($envelopeSender) ? '' : "-f $envelopeSender";
Please login to merge, or discard this patch.
Spacing   +22 added lines, -22 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());
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
         $this->twig->addFilter(new Twig_SimpleFilter('link_url', array($this, 'linkUrlFilter')));
61 61
 
62 62
         // register a Twig filter for generating strings from language codes with CLDR
63
-        $langFilter = new Twig_SimpleFilter('lang_name', function ($langcode, $lang) {
63
+        $langFilter = new Twig_SimpleFilter('lang_name', function($langcode, $lang) {
64 64
             return Language::getName($langcode, $lang);
65 65
         });
66 66
         $this->twig->addFilter($langFilter);
@@ -107,18 +107,18 @@  discard block
 block discarded – undo
107 107
         $localname = $vocab->getLocalName($uri);
108 108
         if ($localname !== $uri && $localname === urlencode($localname)) {
109 109
             // check that the prefix stripping worked, and there are no problematic chars in localname
110
-            $paramstr = sizeof($params) > 0 ? '?' . http_build_query($params) : '';
110
+            $paramstr = sizeof($params) > 0 ? '?'.http_build_query($params) : '';
111 111
             if ($type && $type !== '' && $type !== 'vocab' && !($localname === '' && $type === 'page')) {
112
-                return "$vocid/$lang/$type/$localname" . $paramstr;
112
+                return "$vocid/$lang/$type/$localname".$paramstr;
113 113
             }
114 114
 
115
-            return "$vocid/$lang/$localname" . $paramstr;
115
+            return "$vocid/$lang/$localname".$paramstr;
116 116
         }
117 117
 
118 118
         // case 2: URI outside vocabulary namespace, or has problematic chars
119 119
         // pass the full URI as parameter instead
120 120
         $params['uri'] = $uri;
121
-        return "$vocid/$lang/$type/?" . http_build_query($params);
121
+        return "$vocid/$lang/$type/?".http_build_query($params);
122 122
     }
123 123
 
124 124
     /**
@@ -276,9 +276,9 @@  discard block
 block discarded – undo
276 276
     private function createFeedbackHeaders($fromName, $fromEmail, $toMail, $sender)
277 277
     {
278 278
         $headers = "MIME-Version: 1.0″ . '\r\n";
279
-        $headers .= "Content-type: text/html; charset=UTF-8" . "\r\n";
279
+        $headers .= "Content-type: text/html; charset=UTF-8"."\r\n";
280 280
         if (!empty($toMail)) {
281
-            $headers .= "Cc: " . $this->model->getConfig()->getFeedbackAddress() . "\r\n";
281
+            $headers .= "Cc: ".$this->model->getConfig()->getFeedbackAddress()."\r\n";
282 282
         }
283 283
         if (!empty($fromEmail)) {
284 284
             $headers .= "Reply-To: $fromName <$fromEmail>\r\n";
@@ -300,11 +300,11 @@  discard block
 block discarded – undo
300 300
     {
301 301
         $toAddress = ($toMail) ? $toMail : $this->model->getConfig()->getFeedbackAddress();
302 302
         if ($fromVocab !== null && $fromVocab !== '') {
303
-            $message = 'Feedback from vocab: ' . strtoupper($fromVocab) . "<br />" . $message;
303
+            $message = 'Feedback from vocab: '.strtoupper($fromVocab)."<br />".$message;
304 304
         }
305 305
 
306 306
         $envelopeSender = $this->model->getConfig()->getFeedbackEnvelopeSender();
307
-        $subject = $this->model->getConfig()->getServiceName() . " feedback";
307
+        $subject = $this->model->getConfig()->getServiceName()." feedback";
308 308
         // determine the sender address of the message
309 309
         $sender = $this->model->getConfig()->getFeedbackSender();
310 310
         if (empty($sender)) $sender = $envelopeSender;
@@ -317,10 +317,10 @@  discard block
 block discarded – undo
317 317
         $params = empty($envelopeSender) ? '' : "-f $envelopeSender";
318 318
 
319 319
         // adding some information about the user for debugging purposes.
320
-        $message = $message . "<br /><br /> Debugging information:"
321
-            . "<br />Timestamp: " . date(DATE_RFC2822)
322
-            . "<br />User agent: " . $request->getServerConstant('HTTP_USER_AGENT')
323
-            . "<br />Referer: " . $request->getServerConstant('HTTP_REFERER');
320
+        $message = $message."<br /><br /> Debugging information:"
321
+            . "<br />Timestamp: ".date(DATE_RFC2822)
322
+            . "<br />User agent: ".$request->getServerConstant('HTTP_USER_AGENT')
323
+            . "<br />Referer: ".$request->getServerConstant('HTTP_REFERER');
324 324
 
325 325
         try {
326 326
             mail($toAddress, $subject, $message, $headers, $params);
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
             header("HTTP/1.0 404 Not Found");
329 329
             $template = $this->twig->loadTemplate('error-page.twig');
330 330
             if ($this->model->getConfig()->getLogCaughtExceptions()) {
331
-                error_log('Caught exception: ' . $e->getMessage());
331
+                error_log('Caught exception: '.$e->getMessage());
332 332
             }
333 333
 
334 334
             echo $template->render(
@@ -375,7 +375,7 @@  discard block
 block discarded – undo
375 375
         $vocids = ($vocabs !== null && $vocabs !== '') ? explode(' ', $vocabs) : null;
376 376
         $vocabObjects = array();
377 377
         if ($vocids) {
378
-            foreach($vocids as $vocid) {
378
+            foreach ($vocids as $vocid) {
379 379
                 $vocabObjects[] = $this->model->getVocabulary($vocid);
380 380
             }
381 381
         }
@@ -386,7 +386,7 @@  discard block
 block discarded – undo
386 386
         } catch (Exception $e) {
387 387
             header("HTTP/1.0 404 Not Found");
388 388
             if ($this->model->getConfig()->getLogCaughtExceptions()) {
389
-                error_log('Caught exception: ' . $e->getMessage());
389
+                error_log('Caught exception: '.$e->getMessage());
390 390
             }
391 391
             $this->invokeGenericErrorPage($request, $e->getMessage());
392 392
             return;
@@ -402,7 +402,7 @@  discard block
 block discarded – undo
402 402
                 'search_count' => $counts,
403 403
                 'languages' => $this->languages,
404 404
                 'search_results' => $searchResults,
405
-                'rest' => $parameters->getOffset()>0,
405
+                'rest' => $parameters->getOffset() > 0,
406 406
                 'global_search' => true,
407 407
                 'term' => $request->getQueryParamRaw('q'),
408 408
                 'lang_list' => $langList,
@@ -427,7 +427,7 @@  discard block
 block discarded – undo
427 427
         } catch (Exception $e) {
428 428
             header("HTTP/1.0 404 Not Found");
429 429
             if ($this->model->getConfig()->getLogCaughtExceptions()) {
430
-                error_log('Caught exception: ' . $e->getMessage());
430
+                error_log('Caught exception: '.$e->getMessage());
431 431
             }
432 432
 
433 433
             echo $template->render(
@@ -448,7 +448,7 @@  discard block
 block discarded – undo
448 448
         } catch (Exception $e) {
449 449
             header("HTTP/1.0 404 Not Found");
450 450
             if ($this->model->getConfig()->getLogCaughtExceptions()) {
451
-                error_log('Caught exception: ' . $e->getMessage());
451
+                error_log('Caught exception: '.$e->getMessage());
452 452
             }
453 453
 
454 454
             echo $template->render(
@@ -465,7 +465,7 @@  discard block
 block discarded – undo
465 465
                 'vocab' => $vocab,
466 466
                 'search_results' => $searchResults,
467 467
                 'search_count' => $counts,
468
-                'rest' => $parameters->getOffset()>0,
468
+                'rest' => $parameters->getOffset() > 0,
469 469
                 'limit_parent' => $parameters->getParentLimit(),
470 470
                 'limit_type' =>  $request->getQueryParam('type') ? explode('+', $request->getQueryParam('type')) : null,
471 471
                 'limit_group' => $parameters->getGroupLimit(),
@@ -594,7 +594,7 @@  discard block
 block discarded – undo
594 594
      * Loads and renders the view containing a list of recent changes in the vocabulary.
595 595
      * @param Request $request
596 596
      */
597
-    public function invokeChangeList($request, $prop='dc:created')
597
+    public function invokeChangeList($request, $prop = 'dc:created')
598 598
     {
599 599
         // set language parameters for gettext
600 600
         $this->setLanguageProperties($request->getLang());
Please login to merge, or discard this patch.
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.