GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( 602110...9e304b )
by Steeven
02:47
created
src/Cli/Commanders/Make/Model.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -85,11 +85,11 @@
 block discarded – undo
85 85
                     $subNamespace
86 86
                 )) . '\\';
87 87
 
88
-        $vars[ 'CREATE_DATETIME' ] = date('d/m/Y H:m');
89
-        $vars[ 'NAMESPACE' ] = trim($classNamespace, '\\');
90
-        $vars[ 'PACKAGE' ] = '\\' . trim($classNamespace, '\\');
91
-        $vars[ 'CLASS' ] = $className;
92
-        $vars[ 'FILEPATH' ] = $filePath;
88
+        $vars['CREATE_DATETIME'] = date('d/m/Y H:m');
89
+        $vars['NAMESPACE'] = trim($classNamespace, '\\');
90
+        $vars['PACKAGE'] = '\\' . trim($classNamespace, '\\');
91
+        $vars['CLASS'] = $className;
92
+        $vars['FILEPATH'] = $filePath;
93 93
 
94 94
         $phpTemplate = <<<PHPTEMPLATE
95 95
 <?php
Please login to merge, or discard this patch.
src/Models/NoSql/Model.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
             loader()->addNamespace($reflection->name, $subModelPath);
157 157
 
158 158
             foreach (glob($subModelPath . '*.php') as $filepath) {
159
-                $this->validSubModels[ strtolower(pathinfo($filepath, PATHINFO_FILENAME)) ] = $filepath;
159
+                $this->validSubModels[strtolower(pathinfo($filepath, PATHINFO_FILENAME))] = $filepath;
160 160
             }
161 161
         }
162 162
     }
@@ -183,24 +183,24 @@  discard block
 block discarded – undo
183 183
 
184 184
     public function &__get($property)
185 185
     {
186
-        $get[ $property ] = false;
186
+        $get[$property] = false;
187 187
 
188 188
         if (services()->has($property)) {
189
-            $get[ $property ] = services()->get($property);
189
+            $get[$property] = services()->get($property);
190 190
         } elseif (array_key_exists($property, $this->validSubModels)) {
191
-            $get[ $property ] = $this->loadSubModel($property);
191
+            $get[$property] = $this->loadSubModel($property);
192 192
         } elseif (o2system()->__isset($property)) {
193
-            $get[ $property ] = o2system()->__get($property);
193
+            $get[$property] = o2system()->__get($property);
194 194
         }
195 195
 
196
-        return $get[ $property ];
196
+        return $get[$property];
197 197
     }
198 198
 
199 199
     // ------------------------------------------------------------------------
200 200
 
201 201
     final protected function loadSubModel($model)
202 202
     {
203
-        if (is_file($this->validSubModels[ $model ])) {
203
+        if (is_file($this->validSubModels[$model])) {
204 204
             $className = '\\' . get_called_class() . '\\' . ucfirst($model);
205 205
             $className = str_replace('\Base\\Model', '\Models', $className);
206 206
 
Please login to merge, or discard this patch.
src/Models/Sql/Model.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
                 if ($filepath === $filePath) {
164 164
                     continue;
165 165
                 }
166
-                $this->validSubModels[ camelcase(pathinfo($filepath, PATHINFO_FILENAME)) ] = $filepath;
166
+                $this->validSubModels[camelcase(pathinfo($filepath, PATHINFO_FILENAME))] = $filepath;
167 167
             }
168 168
         }
169 169
     }
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
             }
211 211
         }
212 212
 
213
-        if (empty($get[ $property ])) {
213
+        if (empty($get[$property])) {
214 214
             if (services()->has($property)) {
215 215
                 return services()->get($property);
216 216
             } elseif ($this->hasSubModel($property)) {
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
     final protected function hasSubModel($model)
252 252
     {
253 253
         if (array_key_exists($model, $this->validSubModels)) {
254
-            return (bool)is_file($this->validSubModels[ $model ]);
254
+            return (bool)is_file($this->validSubModels[$model]);
255 255
         }
256 256
 
257 257
         return false;
Please login to merge, or discard this patch.
src/Http/Presenter/Assets.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
         if (count($subPackages)) {
135 135
 
136 136
             if (array_key_exists('libraries', $subPackages)) {
137
-                foreach ($subPackages[ 'libraries' ] as $subPackageFile) {
137
+                foreach ($subPackages['libraries'] as $subPackageFile) {
138 138
                     $pluginDir = $packageDir . 'libraries' . DIRECTORY_SEPARATOR;
139 139
                     $pluginName = $subPackageFile;
140 140
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
                     }
146 146
                 }
147 147
 
148
-                unset($subPackages[ 'libraries' ]);
148
+                unset($subPackages['libraries']);
149 149
             }
150 150
 
151 151
             $this->head->loadFile($packageDir . $package . '.css');
@@ -400,19 +400,19 @@  discard block
 block discarded – undo
400 400
         }
401 401
 
402 402
         // Valet path fixes
403
-        if (isset($_SERVER[ 'SCRIPT_FILENAME' ])) {
404
-            $valetPath = dirname($_SERVER[ 'SCRIPT_FILENAME' ]) . DIRECTORY_SEPARATOR;
403
+        if (isset($_SERVER['SCRIPT_FILENAME'])) {
404
+            $valetPath = dirname($_SERVER['SCRIPT_FILENAME']) . DIRECTORY_SEPARATOR;
405 405
         } else {
406
-            $PATH_ROOT = $_SERVER[ 'DOCUMENT_ROOT' ];
407
-
408
-            if (isset($_SERVER[ 'PHP_SELF' ])) {
409
-                $valetPath = $PATH_ROOT . dirname($_SERVER[ 'PHP_SELF' ]) . DIRECTORY_SEPARATOR;
410
-            } elseif (isset($_SERVER[ 'DOCUMENT_URI' ])) {
411
-                $valetPath = $PATH_ROOT . dirname($_SERVER[ 'DOCUMENT_URI' ]) . DIRECTORY_SEPARATOR;
412
-            } elseif (isset($_SERVER[ 'REQUEST_URI' ])) {
413
-                $valetPath = $PATH_ROOT . dirname($_SERVER[ 'REQUEST_URI' ]) . DIRECTORY_SEPARATOR;
414
-            } elseif (isset($_SERVER[ 'SCRIPT_NAME' ])) {
415
-                $valetPath = $PATH_ROOT . dirname($_SERVER[ 'SCRIPT_NAME' ]) . DIRECTORY_SEPARATOR;
406
+            $PATH_ROOT = $_SERVER['DOCUMENT_ROOT'];
407
+
408
+            if (isset($_SERVER['PHP_SELF'])) {
409
+                $valetPath = $PATH_ROOT . dirname($_SERVER['PHP_SELF']) . DIRECTORY_SEPARATOR;
410
+            } elseif (isset($_SERVER['DOCUMENT_URI'])) {
411
+                $valetPath = $PATH_ROOT . dirname($_SERVER['DOCUMENT_URI']) . DIRECTORY_SEPARATOR;
412
+            } elseif (isset($_SERVER['REQUEST_URI'])) {
413
+                $valetPath = $PATH_ROOT . dirname($_SERVER['REQUEST_URI']) . DIRECTORY_SEPARATOR;
414
+            } elseif (isset($_SERVER['SCRIPT_NAME'])) {
415
+                $valetPath = $PATH_ROOT . dirname($_SERVER['SCRIPT_NAME']) . DIRECTORY_SEPARATOR;
416 416
             }
417 417
         }
418 418
 
Please login to merge, or discard this patch.
src/DataStructures/Commons/Money.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -32,16 +32,16 @@
 block discarded – undo
32 32
     {
33 33
         $money = [];
34 34
         if (is_numeric($amount)) {
35
-            $money[ 'amount' ] = (int)$amount;
35
+            $money['amount'] = (int)$amount;
36 36
         } elseif (is_array($amount)) {
37 37
             $money = $amount;
38 38
         }
39 39
 
40
-        (int)$storage[ 'amount' ] = 0;
41
-        $storage[ 'currency' ] = config()->getItem('units')->currency;
40
+        (int)$storage['amount'] = 0;
41
+        $storage['currency'] = config()->getItem('units')->currency;
42 42
 
43 43
         $storage = array_merge($storage, $money);
44
-        (int)$storage[ 'amount' ] = empty($storage[ 'amount' ]) ? 0 : abs($storage[ 'amount' ]);
44
+        (int)$storage['amount'] = empty($storage['amount']) ? 0 : abs($storage['amount']);
45 45
 
46 46
         $this->storage = $storage;
47 47
     }
Please login to merge, or discard this patch.
src/DataStructures/Commons/Name.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -36,23 +36,23 @@
 block discarded – undo
36 36
             $name = [];
37 37
 
38 38
             if (count($parts) == 1) {
39
-                $name[ 'first' ] = $parts[ 0 ];
40
-                $name[ 'middle' ] = null;
41
-                $name[ 'last' ] = null;
39
+                $name['first'] = $parts[0];
40
+                $name['middle'] = null;
41
+                $name['last'] = null;
42 42
             } elseif (count($parts) == 2) {
43
-                $name[ 'first' ] = $parts[ 0 ];
44
-                $name[ 'middle' ] = null;
45
-                $name[ 'last' ] = $parts[ 1 ];
43
+                $name['first'] = $parts[0];
44
+                $name['middle'] = null;
45
+                $name['last'] = $parts[1];
46 46
             } elseif (count($parts) == 3) {
47
-                $name[ 'first' ] = $parts[ 0 ];
48
-                $name[ 'middle' ] = $parts[ 1 ];
49
-                $name[ 'last' ] = $parts[ 2 ];
47
+                $name['first'] = $parts[0];
48
+                $name['middle'] = $parts[1];
49
+                $name['last'] = $parts[2];
50 50
             } else {
51
-                $name[ 'first' ] = $parts[ 0 ];
52
-                $name[ 'middle' ] = $parts[ 1 ];
51
+                $name['first'] = $parts[0];
52
+                $name['middle'] = $parts[1];
53 53
 
54 54
                 $parts = array_slice($parts, 2);
55
-                $name[ 'last' ] = implode(' ', $parts);
55
+                $name['last'] = implode(' ', $parts);
56 56
             }
57 57
         }
58 58
 
Please login to merge, or discard this patch.
src/Http/Presenter/Meta/Opengraph.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -76,8 +76,8 @@  discard block
 block discarded – undo
76 76
     {
77 77
         $element = new Element('meta');
78 78
 
79
-        $element->attributes[ 'name' ] = 'fb:app_id';
80
-        $element->attributes[ 'content' ] = $appId;
79
+        $element->attributes['name'] = 'fb:app_id';
80
+        $element->attributes['content'] = $appId;
81 81
 
82 82
         parent::offsetSet('fb:app_id', $element);
83 83
 
@@ -117,8 +117,8 @@  discard block
 block discarded – undo
117 117
         $property = 'og:' . $property;
118 118
         $element = new Element('meta');
119 119
 
120
-        $element->attributes[ 'name' ] = $property;
121
-        $element->attributes[ 'content' ] = (is_array($content) ? implode(', ', $content) : trim($content));
120
+        $element->attributes['name'] = $property;
121
+        $element->attributes['content'] = (is_array($content) ? implode(', ', $content) : trim($content));
122 122
 
123 123
         parent::offsetSet($property, $element);
124 124
 
Please login to merge, or discard this patch.
src/Http/View.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
         );
73 73
 
74 74
         if ($this->config->offsetExists('extensions')) {
75
-            $this->setFileExtensions($this->config[ 'extensions' ]);
75
+            $this->setFileExtensions($this->config['extensions']);
76 76
         }
77 77
 
78 78
         $this->document = new Html\Document();
@@ -88,13 +88,13 @@  discard block
 block discarded – undo
88 88
      */
89 89
     public function &__get($property)
90 90
     {
91
-        $get[ $property ] = false;
91
+        $get[$property] = false;
92 92
 
93 93
         if (property_exists($this, $property)) {
94 94
             return $this->{$property};
95 95
         }
96 96
 
97
-        return $get[ $property ];
97
+        return $get[$property];
98 98
     }
99 99
 
100 100
     // ------------------------------------------------------------------------
@@ -205,8 +205,8 @@  discard block
 block discarded – undo
205 205
             $error = new ErrorException(
206 206
                 'E_VIEW_NOT_FOUND',
207 207
                 0,
208
-                @$backtrace[ 0 ][ 'file' ],
209
-                @$backtrace[ 0 ][ 'line' ],
208
+                @$backtrace[0]['file'],
209
+                @$backtrace[0]['line'],
210 210
                 [trim($filename)]
211 211
             );
212 212
 
@@ -455,12 +455,12 @@  discard block
 block discarded – undo
455 455
         $htmlOutput = $this->document->saveHTML();
456 456
 
457 457
         // Uglify Output
458
-        if ($this->config->output[ 'uglify' ] === true) {
458
+        if ($this->config->output['uglify'] === true) {
459 459
             $htmlOutput = preg_replace(
460 460
                 [
461
-                    '/\>[^\S ]+/s',     // strip whitespaces after tags, except space
462
-                    '/[^\S ]+\</s',     // strip whitespaces before tags, except space
463
-                    '/(\s)+/s',         // shorten multiple whitespace sequences
461
+                    '/\>[^\S ]+/s', // strip whitespaces after tags, except space
462
+                    '/[^\S ]+\</s', // strip whitespaces before tags, except space
463
+                    '/(\s)+/s', // shorten multiple whitespace sequences
464 464
                     '/<!--(.|\s)*?-->/', // Remove HTML comments
465 465
                     '/<!--(.*)-->/Uis',
466 466
                     "/[[:blank:]]+/",
@@ -477,7 +477,7 @@  discard block
 block discarded – undo
477 477
         }
478 478
 
479 479
         // Beautify Output
480
-        if ($this->config->output[ 'beautify' ] === true) {
480
+        if ($this->config->output['beautify'] === true) {
481 481
             $beautifier = new Html\Dom\Beautifier();
482 482
             $htmlOutput = $beautifier->format($htmlOutput);
483 483
         }
Please login to merge, or discard this patch.
src/Http/Controller.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      */
34 34
     public function &__get($property)
35 35
     {
36
-        $get[ $property ] = false;
36
+        $get[$property] = false;
37 37
 
38 38
         // CodeIgniter property aliasing
39 39
         if ($property === 'load') {
@@ -41,15 +41,15 @@  discard block
 block discarded – undo
41 41
         }
42 42
 
43 43
         if (services()->has($property)) {
44
-            $get[ $property ] = services()->get($property);
44
+            $get[$property] = services()->get($property);
45 45
         } elseif (o2system()->__isset($property)) {
46
-            $get[ $property ] = o2system()->__get($property);
46
+            $get[$property] = o2system()->__get($property);
47 47
         } elseif ($property === 'model') {
48
-            $get[ $property ] = models('controller');
48
+            $get[$property] = models('controller');
49 49
         } elseif ($property === 'services' || $property === 'libraries') {
50
-            $get[ $property ] = services();
50
+            $get[$property] = services();
51 51
         }
52 52
 
53
-        return $get[ $property ];
53
+        return $get[$property];
54 54
     }
55 55
 }
56 56
\ No newline at end of file
Please login to merge, or discard this patch.