Completed
Push — master ( cfbaac...db0318 )
by Henri
09:36
created
rest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     } elseif ($parts[1] == 'data') {
38 38
         $controller->data($request);
39 39
     } elseif (sizeof($parts) == 2) {
40
-        header("Location: " . $parts[1] . "/");
40
+        header("Location: ".$parts[1]."/");
41 41
     } else {
42 42
         $vocab = $parts[1];
43 43
         try {
@@ -93,5 +93,5 @@  discard block
 block discarded – undo
93 93
     }
94 94
 } catch (Exception $e) {
95 95
     header("HTTP/1.0 500 Internal Server Error");
96
-    echo('ERROR: ' . $e->getMessage());
96
+    echo('ERROR: '.$e->getMessage());
97 97
 }
Please login to merge, or discard this patch.
model/Request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
 
107 107
     public function getRequestUri()
108 108
     {
109
-        return $this->getServerConstant('HTTP_HOST') . $this->getServerConstant('REQUEST_URI');
109
+        return $this->getServerConstant('HTTP_HOST').$this->getServerConstant('REQUEST_URI');
110 110
     }
111 111
     
112 112
     /**
Please login to merge, or discard this patch.
model/VocabularyConfig.php 1 patch
Spacing   +3 added lines, -3 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');
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      * @param string $property the property to query
41 41
      * @param string $lang preferred language for the literal,
42 42
      */
43
-    private function getLiteral($property, $lang=null)
43
+    private function getLiteral($property, $lang = null)
44 44
     {
45 45
         if (!isset($lang)) {;
46 46
             $lang = $this->getEnvLang();
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
         $langs = $this->getLanguages();
73 73
         $deflang = reset($langs); // picking the first one from the list with reset since the keys are not numeric
74 74
         if (sizeof($langs) > 1) {
75
-            trigger_error("Default language for vocabulary '" . $this->getShortName() . "' unknown, choosing '$deflang'.", E_USER_WARNING);
75
+            trigger_error("Default language for vocabulary '".$this->getShortName()."' unknown, choosing '$deflang'.", E_USER_WARNING);
76 76
         }
77 77
 
78 78
         return $deflang;
Please login to merge, or discard this patch.
model/PluginRegister.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 class PluginRegister {
4 4
     private $requestedPlugins;
5 5
 
6
-    public function __construct($requestedPlugins=array()) {
6
+    public function __construct($requestedPlugins = array()) {
7 7
         $this->requestedPlugins = $requestedPlugins;
8 8
     }
9 9
     
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
                 if (isset($files[$type])) {
39 39
                     $ret[$name] = array();
40 40
                     foreach ($files[$type] as $file) {
41
-                        array_push($ret[$name], 'plugins/' . $name . '/' . $file);
41
+                        array_push($ret[$name], 'plugins/'.$name.'/'.$file);
42 42
                     }
43 43
                 }
44 44
             } 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      * @param array $names the plugin name strings (foldernames) in an array 
69 69
      * @return array
70 70
      */
71
-    public function getPluginsJS($names=null) {
71
+    public function getPluginsJS($names = null) {
72 72
         if ($names) {
73 73
             $names = array_merge($this->requestedPlugins, $names);
74 74
             return $this->filterPluginsByName('js', $names);
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
      * @param array $names the plugin name strings (foldernames) in an array 
82 82
      * @return array
83 83
      */
84
-    public function getPluginsCSS($names=null) {
84
+    public function getPluginsCSS($names = null) {
85 85
         if ($names) {
86 86
             $names = array_merge($this->requestedPlugins, $names);
87 87
             return $this->filterPluginsByName('css', $names);
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      * @param array $names the plugin name strings (foldernames) in an array 
95 95
      * @return array
96 96
      */
97
-    public function getPluginsTemplates($names=null) {
97
+    public function getPluginsTemplates($names = null) {
98 98
         if ($names) {
99 99
             $names = array_merge($this->requestedPlugins, $names);
100 100
             return $this->filterPluginsByName('templates', $names);
@@ -107,15 +107,15 @@  discard block
 block discarded – undo
107 107
      * @param array $names the plugin name strings (foldernames) in an array 
108 108
      * @return array
109 109
      */
110
-    public function getTemplates($names=null) {
110
+    public function getTemplates($names = null) {
111 111
         $templateStrings = array();
112 112
         $plugins = $this->getPluginsTemplates($names);
113 113
         foreach ($plugins as $folder => $templates) {
114 114
             foreach ($templates as $path) {
115 115
                 if (file_exists($path)) {
116 116
                     $filename = explode('/', $path);
117
-                    $filename = $filename[sizeof($filename)-1];
118
-                    $id = $folder . '-' . substr($filename, 0 , (strrpos($filename, ".")));
117
+                    $filename = $filename[sizeof($filename) - 1];
118
+                    $id = $folder.'-'.substr($filename, 0, (strrpos($filename, ".")));
119 119
                     $templateStrings[$id] = file_get_contents($path);
120 120
                 }
121 121
             }
Please login to merge, or discard this patch.
model/ConceptMappingPropertyValue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     {
23 23
         $label = $this->getLabel();
24 24
         $notation = $this->getNotation();
25
-        return $notation . $label;
25
+        return $notation.$label;
26 26
     }
27 27
 
28 28
     public function getType()
Please login to merge, or discard this patch.
model/GlobalConfig.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,10 +6,10 @@  discard block
 block discarded – undo
6 6
 class GlobalConfig {
7 7
     private $languages;
8 8
 
9
-    public function __construct($config_name='/../config.inc') 
9
+    public function __construct($config_name = '/../config.inc') 
10 10
     {
11 11
         try {
12
-            $file_path = dirname(__FILE__) . $config_name;
12
+            $file_path = dirname(__FILE__).$config_name;
13 13
             if (!file_exists($file_path)) {
14 14
                 throw new Exception('config.inc file is missing, please provide one.');
15 15
             }
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
                 $this->languages = $LANGUAGES;
19 19
             }
20 20
         } catch (Exception $e) {
21
-            echo "Error: " . $e->getMessage();
21
+            echo "Error: ".$e->getMessage();
22 22
             return;
23 23
         }
24 24
     }
Please login to merge, or discard this patch.
controller/EntityController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
         $baseurl = $this->getBaseHref();
22 22
         $vocid = $vocab->getId();
23 23
         $query = http_build_query(array('uri'=>$uri, 'format'=>$targetFormat));
24
-        $url = $baseurl . "rest/v1/$vocid/data?$query";
24
+        $url = $baseurl."rest/v1/$vocid/data?$query";
25 25
         $this->redirect303($url);
26 26
     }
27 27
     
@@ -32,11 +32,11 @@  discard block
 block discarded – undo
32 32
         $localname = $vocab->getLocalName($uri);
33 33
         if ($localname !== $uri && $localname === urlencode($localname)) {
34 34
             // the URI can be shortened
35
-            $url = $baseurl . "$vocid/page/$localname";
35
+            $url = $baseurl."$vocid/page/$localname";
36 36
         } else {
37 37
             // must use full URI
38 38
             $query = http_build_query(array('uri'=>$uri));
39
-            $url = $baseurl . "$vocid/page/?" . $query;
39
+            $url = $baseurl."$vocid/page/?".$query;
40 40
         }
41 41
         $this->redirect303($url);
42 42
     }
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
             // guess vocabulary based on URI
57 57
             $vocab = $this->model->guessVocabularyFromURI($request->getUri());
58 58
             if ($vocab === null) {
59
-                return $this->returnError('404', 'Not Found', 'Unrecognized URI ' . $request->getUri());
59
+                return $this->returnError('404', 'Not Found', 'Unrecognized URI '.$request->getUri());
60 60
             }
61 61
             $request->setVocab($vocab->getId());
62 62
         }
Please login to merge, or discard this patch.
model/ConceptSearchParameters.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
         if ($this->rest) {
82 82
             return $term;
83 83
         }
84
-        return strpos($term, "*") === false ? $term . "*" : $term; // default to prefix search
84
+        return strpos($term, "*") === false ? $term."*" : $term; // default to prefix search
85 85
     }
86 86
     
87 87
     public function getContentLang() 
Please login to merge, or discard this patch.
entity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,5 +23,5 @@
 block discarded – undo
23 23
 
24 24
 } catch (Exception $e) {
25 25
     header("HTTP/1.0 500 Internal Server Error");
26
-    echo('ERROR: ' . $e->getMessage());
26
+    echo('ERROR: '.$e->getMessage());
27 27
 }
Please login to merge, or discard this patch.