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 ( 8aec84...58f81f )
by Steeven
03:05
created
src/autoload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
  * @param $className
26 26
  */
27 27
 spl_autoload_register(
28
-    function ($className) {
28
+    function($className) {
29 29
         if ($className === 'O2System\Kernel') {
30 30
             require __DIR__ . DIRECTORY_SEPARATOR . 'Kernel.php';
31 31
         } elseif (strpos($className, 'O2System\Kernel\\') === false) {
Please login to merge, or discard this patch.
src/Helpers/Inflector.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -114,24 +114,24 @@
 block discarded – undo
114 114
         }
115 115
 
116 116
         $rules = [
117
-            '/^(ox)$/'                => '\1\2en',     // ox
118
-            '/([m|l])ouse$/'          => '\1ice',      // mouse, louse
119
-            '/(matr|vert|ind)ix|ex$/' => '\1ices',     // matrix, vertex, index
120
-            '/(x|ch|ss|sh)$/'         => '\1es',       // search, switch, fix, box, process, address
121
-            '/([^aeiouy]|qu)y$/'      => '\1ies',      // query, ability, agency
122
-            '/(hive)$/'               => '\1s',        // archive, hive
123
-            '/(?:([^f])fe|([lr])f)$/' => '\1\2ves',    // half, safe, wife
124
-            '/sis$/'                  => 'ses',        // basis, diagnosis
125
-            '/([ti])um$/'             => '\1a',        // datum, medium
126
-            '/(p)erson$/'             => '\1eople',    // person, salesperson
127
-            '/(m)an$/'                => '\1en',       // man, woman, spokesman
128
-            '/(c)hild$/'              => '\1hildren',  // child
129
-            '/(buffal|tomat)o$/'      => '\1\2oes',    // buffalo, tomato
130
-            '/(bu|campu)s$/'          => '\1\2ses',    // bus, campus
131
-            '/(alias|status|virus)$/' => '\1es',       // alias
132
-            '/(octop)us$/'            => '\1i',        // octopus
133
-            '/(ax|cris|test)is$/'     => '\1es',       // axis, crisis
134
-            '/s$/'                    => 's',          // no change (compatibility)
117
+            '/^(ox)$/'                => '\1\2en', // ox
118
+            '/([m|l])ouse$/'          => '\1ice', // mouse, louse
119
+            '/(matr|vert|ind)ix|ex$/' => '\1ices', // matrix, vertex, index
120
+            '/(x|ch|ss|sh)$/'         => '\1es', // search, switch, fix, box, process, address
121
+            '/([^aeiouy]|qu)y$/'      => '\1ies', // query, ability, agency
122
+            '/(hive)$/'               => '\1s', // archive, hive
123
+            '/(?:([^f])fe|([lr])f)$/' => '\1\2ves', // half, safe, wife
124
+            '/sis$/'                  => 'ses', // basis, diagnosis
125
+            '/([ti])um$/'             => '\1a', // datum, medium
126
+            '/(p)erson$/'             => '\1eople', // person, salesperson
127
+            '/(m)an$/'                => '\1en', // man, woman, spokesman
128
+            '/(c)hild$/'              => '\1hildren', // child
129
+            '/(buffal|tomat)o$/'      => '\1\2oes', // buffalo, tomato
130
+            '/(bu|campu)s$/'          => '\1\2ses', // bus, campus
131
+            '/(alias|status|virus)$/' => '\1es', // alias
132
+            '/(octop)us$/'            => '\1i', // octopus
133
+            '/(ax|cris|test)is$/'     => '\1es', // axis, crisis
134
+            '/s$/'                    => 's', // no change (compatibility)
135 135
             '/$/'                     => 's',
136 136
         ];
137 137
 
Please login to merge, or discard this patch.
src/Helpers/Cookie.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -43,30 +43,30 @@  discard block
 block discarded – undo
43 43
         if (is_array($name)) {
44 44
             // always leave 'name' in last place, as the loop will break otherwise, due to $$item
45 45
             foreach (['value', 'expire', 'domain', 'path', 'prefix', 'secure', 'httponly', 'name'] as $item) {
46
-                if (isset($name[ $item ])) {
47
-                    $$item = $name[ $item ];
46
+                if (isset($name[$item])) {
47
+                    $$item = $name[$item];
48 48
                 }
49 49
             }
50 50
         }
51 51
 
52 52
         if ($prefix === '' && function_exists('config')) {
53
-            $prefix = config()->offsetGet('cookie')[ 'prefix' ];
53
+            $prefix = config()->offsetGet('cookie')['prefix'];
54 54
         }
55 55
 
56 56
         if ($domain === '' && function_exists('config')) {
57
-            $domain = config()->offsetGet('cookie')[ 'domain' ];
57
+            $domain = config()->offsetGet('cookie')['domain'];
58 58
         }
59 59
 
60 60
         if ($path === '' && function_exists('config')) {
61
-            $path = config()->offsetGet('cookie')[ 'path' ];
61
+            $path = config()->offsetGet('cookie')['path'];
62 62
         }
63 63
 
64 64
         if ($secure === null && function_exists('config')) {
65
-            $secure = config()->offsetGet('cookie')[ 'secure' ];
65
+            $secure = config()->offsetGet('cookie')['secure'];
66 66
         }
67 67
 
68 68
         if ($httponly === null && function_exists('config')) {
69
-            $httponly = config()->offsetGet('cookie')[ 'httpOnly' ];
69
+            $httponly = config()->offsetGet('cookie')['httpOnly'];
70 70
         }
71 71
 
72 72
         if ( ! is_numeric($expire) OR $expire < 0) {
@@ -99,12 +99,12 @@  discard block
 block discarded – undo
99 99
      */
100 100
     function get_cookie($name)
101 101
     {
102
-        if (isset($_COOKIE[ $name ])) {
103
-            return $_COOKIE[ $name ];
102
+        if (isset($_COOKIE[$name])) {
103
+            return $_COOKIE[$name];
104 104
         } elseif (function_exists('config')) {
105
-            $prefix = config()->offsetGet('cookie')[ 'prefix' ];
106
-            if (isset($_COOKIE[ $prefix . $name ])) {
107
-                return $_COOKIE[ $prefix . $name ];
105
+            $prefix = config()->offsetGet('cookie')['prefix'];
106
+            if (isset($_COOKIE[$prefix . $name])) {
107
+                return $_COOKIE[$prefix . $name];
108 108
             }
109 109
         }
110 110
 
@@ -128,11 +128,11 @@  discard block
 block discarded – undo
128 128
     function delete_cookie($name, $domain = '', $path = '/', $prefix = '')
129 129
     {
130 130
         if ($prefix === '' && function_exists('config')) {
131
-            $prefix = config()->offsetGet('cookie')[ 'prefix' ];
131
+            $prefix = config()->offsetGet('cookie')['prefix'];
132 132
         }
133 133
 
134
-        if (isset($_COOKIE[ $prefix . $name ])) {
135
-            unset($_COOKIE[ $prefix . $name ]);
134
+        if (isset($_COOKIE[$prefix . $name])) {
135
+            unset($_COOKIE[$prefix . $name]);
136 136
         }
137 137
 
138 138
         return set_cookie($name, '', -1, $domain, $path, $prefix);
Please login to merge, or discard this patch.
src/Helpers/Common.php 2 patches
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -502,14 +502,18 @@
 block discarded – undo
502 502
                 $key = $h[ 0 ]; // [+]
503 503
             } else // [+]
504 504
             { // [+]
505
-                if (substr($h[ 0 ], 0, 1) == "\t") // [+]
505
+                if (substr($h[ 0 ], 0, 1) == "\t") {
506
+                    // [+]
506 507
                 {
507 508
                     $headers[ $key ] .= "\r\n\t" . trim($h[ 0 ]);
509
+                }
508 510
                 } // [+]
509
-                elseif ( ! $key) // [+]
511
+                elseif ( ! $key) {
512
+                    // [+]
510 513
                 {
511 514
                     $headers[ 0 ] = trim($h[ 0 ]);
512 515
                 }
516
+                }
513 517
                 trim($h[ 0 ]); // [+]
514 518
             } // [+]
515 519
         }
Please login to merge, or discard this patch.
Spacing   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -25,11 +25,11 @@  discard block
 block discarded – undo
25 25
         static $_is_php;
26 26
         $version = (string)$version;
27 27
 
28
-        if ( ! isset($_is_php[ $version ])) {
29
-            $_is_php[ $version ] = version_compare(PHP_VERSION, $version, '>=');
28
+        if ( ! isset($_is_php[$version])) {
29
+            $_is_php[$version] = version_compare(PHP_VERSION, $version, '>=');
30 30
         }
31 31
 
32
-        return $_is_php[ $version ];
32
+        return $_is_php[$version];
33 33
     }
34 34
 }
35 35
 
@@ -131,12 +131,12 @@  discard block
 block discarded – undo
131 131
      */
132 132
     function is_https()
133 133
     {
134
-        if ( ! empty($_SERVER[ 'HTTPS' ]) && strtolower($_SERVER[ 'HTTPS' ]) !== 'off') {
134
+        if ( ! empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) !== 'off') {
135 135
             return true;
136
-        } elseif (isset($_SERVER[ 'HTTP_X_FORWARDED_PROTO' ]) && $_SERVER[ 'HTTP_X_FORWARDED_PROTO' ] === 'https') {
136
+        } elseif (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') {
137 137
             return true;
138
-        } elseif ( ! empty($_SERVER[ 'HTTP_FRONT_END_HTTPS' ]) && strtolower(
139
-                $_SERVER[ 'HTTP_FRONT_END_HTTPS' ]
138
+        } elseif ( ! empty($_SERVER['HTTP_FRONT_END_HTTPS']) && strtolower(
139
+                $_SERVER['HTTP_FRONT_END_HTTPS']
140 140
             ) !== 'off'
141 141
         ) {
142 142
             return true;
@@ -174,8 +174,8 @@  discard block
 block discarded – undo
174 174
      */
175 175
     function is_ajax()
176 176
     {
177
-        return ( ! empty($_SERVER[ 'HTTP_X_REQUESTED_WITH' ]) && strtolower(
178
-                $_SERVER[ 'HTTP_X_REQUESTED_WITH' ]
177
+        return ( ! empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower(
178
+                $_SERVER['HTTP_X_REQUESTED_WITH']
179 179
             ) === 'xmlhttprequest');
180 180
     }
181 181
 }
@@ -201,11 +201,11 @@  discard block
 block discarded – undo
201 201
         // every control character except newline (dec 10),
202 202
         // carriage return (dec 13) and horizontal tab (dec 09)
203 203
         if ($url_encoded) {
204
-            $non_displayables[] = '/%0[0-8bcef]/';    // url encoded 00-08, 11, 12, 14, 15
205
-            $non_displayables[] = '/%1[0-9a-f]/';    // url encoded 16-31
204
+            $non_displayables[] = '/%0[0-8bcef]/'; // url encoded 00-08, 11, 12, 14, 15
205
+            $non_displayables[] = '/%1[0-9a-f]/'; // url encoded 16-31
206 206
         }
207 207
 
208
-        $non_displayables[] = '/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F]+/S';    // 00-08, 11, 12, 14-31, 127
208
+        $non_displayables[] = '/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F]+/S'; // 00-08, 11, 12, 14-31, 127
209 209
 
210 210
         do {
211 211
             $str = preg_replace($non_displayables, '', $str, -1, $count);
@@ -286,11 +286,11 @@  discard block
 block discarded – undo
286 286
                 $matches_regex = explode('_', $header_key);
287 287
                 if (count($matches_regex) > 0 and strlen($header_key) > 2) {
288 288
                     foreach ($matches_regex as $match_key => $match_value) {
289
-                        $matches_regex[ $match_key ] = ucfirst($match_value);
289
+                        $matches_regex[$match_key] = ucfirst($match_value);
290 290
                     }
291 291
                     $header_key = implode('-', $matches_regex);
292 292
                 }
293
-                $headers[ $header_key ] = $server_value;
293
+                $headers[$header_key] = $server_value;
294 294
             }
295 295
         }
296 296
 
@@ -310,8 +310,8 @@  discard block
 block discarded – undo
310 310
     function path_to_url($path)
311 311
     {
312 312
         $path = str_replace(['/', '\\'], DIRECTORY_SEPARATOR, $path);
313
-        $root_dir = str_replace(['/', '\\'], DIRECTORY_SEPARATOR, $_SERVER[ 'DOCUMENT_ROOT' ]);
314
-        $base_dir = str_replace(['/', '\\'], DIRECTORY_SEPARATOR, dirname($_SERVER[ 'SCRIPT_FILENAME' ]));
313
+        $root_dir = str_replace(['/', '\\'], DIRECTORY_SEPARATOR, $_SERVER['DOCUMENT_ROOT']);
314
+        $base_dir = str_replace(['/', '\\'], DIRECTORY_SEPARATOR, dirname($_SERVER['SCRIPT_FILENAME']));
315 315
 
316 316
         $root_dir = rtrim($root_dir, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR;
317 317
         $base_dir = rtrim($base_dir, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR;
@@ -326,15 +326,15 @@  discard block
 block discarded – undo
326 326
 
327 327
         $base_url = is_https() ? 'https' : 'http';
328 328
 
329
-        if (isset($_SERVER[ 'HTTP_HOST' ])) {
330
-            $base_url .= '://' . $_SERVER[ 'HTTP_HOST' ];
331
-        } elseif (isset($_SERVER[ 'SERVER_NAME' ])) {
329
+        if (isset($_SERVER['HTTP_HOST'])) {
330
+            $base_url .= '://' . $_SERVER['HTTP_HOST'];
331
+        } elseif (isset($_SERVER['SERVER_NAME'])) {
332 332
 
333 333
             // Add server name
334
-            $base_url .= '://' . $_SERVER[ 'SERVER_NAME' ];
334
+            $base_url .= '://' . $_SERVER['SERVER_NAME'];
335 335
 
336 336
             // Add server port if needed
337
-            $base_url .= $_SERVER[ 'SERVER_PORT' ] !== '80' ? ':' . $_SERVER[ 'SERVER_PORT' ] : '';
337
+            $base_url .= $_SERVER['SERVER_PORT'] !== '80' ? ':' . $_SERVER['SERVER_PORT'] : '';
338 338
         }
339 339
 
340 340
         // Add base path
@@ -342,11 +342,11 @@  discard block
 block discarded – undo
342 342
         $base_url = str_replace(DIRECTORY_SEPARATOR, '/', $base_url);
343 343
         $base_url = trim($base_url, '/') . '/';
344 344
 
345
-        if(strpos($path, 'resources') !== false && defined('PATH_RESOURCES')) {
345
+        if (strpos($path, 'resources') !== false && defined('PATH_RESOURCES')) {
346 346
             $path_url = 'resources' . '/' . str_replace(PATH_RESOURCES, '', $path);
347
-        } elseif(strpos($path, 'public') !== false && defined('PATH_PUBLIC')) {
347
+        } elseif (strpos($path, 'public') !== false && defined('PATH_PUBLIC')) {
348 348
             $path_url = str_replace(PATH_PUBLIC, '', $path);
349
-        } elseif(strpos($path, 'storage') !== false && defined('PATH_RESOURCES')) {
349
+        } elseif (strpos($path, 'storage') !== false && defined('PATH_RESOURCES')) {
350 350
             $path_url = 'storage' . '/' . str_replace(PATH_RESOURCES, '', $path);
351 351
         } else {
352 352
             $path_url = str_replace($base_dir, '', $path);
@@ -421,7 +421,7 @@  discard block
 block discarded – undo
421 421
         $segments = explode('\\', $class);
422 422
 
423 423
         if (count($segments) > 1) {
424
-            if ($segments[ 0 ] === $segments[ 1 ]) {
424
+            if ($segments[0] === $segments[1]) {
425 425
                 array_shift($segments);
426 426
             }
427 427
         }
@@ -494,27 +494,27 @@  discard block
 block discarded – undo
494 494
         foreach (explode("\n", $raw_headers) as $i => $h) {
495 495
             $h = explode(':', $h, 2);
496 496
 
497
-            if (isset($h[ 1 ])) {
498
-                if ( ! isset($headers[ $h[ 0 ] ])) {
499
-                    $headers[ $h[ 0 ] ] = trim($h[ 1 ]);
500
-                } elseif (is_array($headers[ $h[ 0 ] ])) {
501
-                    $headers[ $h[ 0 ] ] = array_merge($headers[ $h[ 0 ] ], [trim($h[ 1 ])]); // [+]
497
+            if (isset($h[1])) {
498
+                if ( ! isset($headers[$h[0]])) {
499
+                    $headers[$h[0]] = trim($h[1]);
500
+                } elseif (is_array($headers[$h[0]])) {
501
+                    $headers[$h[0]] = array_merge($headers[$h[0]], [trim($h[1])]); // [+]
502 502
                 } else {
503
-                    $headers[ $h[ 0 ] ] = array_merge([$headers[ $h[ 0 ] ]], [trim($h[ 1 ])]); // [+]
503
+                    $headers[$h[0]] = array_merge([$headers[$h[0]]], [trim($h[1])]); // [+]
504 504
                 }
505 505
 
506
-                $key = $h[ 0 ]; // [+]
506
+                $key = $h[0]; // [+]
507 507
             } else // [+]
508 508
             { // [+]
509
-                if (substr($h[ 0 ], 0, 1) == "\t") // [+]
509
+                if (substr($h[0], 0, 1) == "\t") // [+]
510 510
                 {
511
-                    $headers[ $key ] .= "\r\n\t" . trim($h[ 0 ]);
511
+                    $headers[$key] .= "\r\n\t" . trim($h[0]);
512 512
                 } // [+]
513 513
                 elseif ( ! $key) // [+]
514 514
                 {
515
-                    $headers[ 0 ] = trim($h[ 0 ]);
515
+                    $headers[0] = trim($h[0]);
516 516
                 }
517
-                trim($h[ 0 ]); // [+]
517
+                trim($h[0]); // [+]
518 518
             } // [+]
519 519
         }
520 520
 
@@ -732,8 +732,8 @@  discard block
 block discarded – undo
732 732
 
733 733
         $string = null;
734 734
 
735
-        if (isset($errors[ $code ])) {
736
-            $string = $errors[ $code ];
735
+        if (isset($errors[$code])) {
736
+            $string = $errors[$code];
737 737
         }
738 738
 
739 739
         return strtoupper($string);
Please login to merge, or discard this patch.
src/Services/Logger.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
             $this->path = PATH_CACHE . 'logs' . DIRECTORY_SEPARATOR;
64 64
         } else {
65 65
             $this->path = dirname(
66
-                    $_SERVER[ 'SCRIPT_FILENAME' ]
66
+                    $_SERVER['SCRIPT_FILENAME']
67 67
                 ) . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'logs' . DIRECTORY_SEPARATOR;
68 68
         }
69 69
 
Please login to merge, or discard this patch.
src/Helpers/Kernel.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -46,12 +46,12 @@  discard block
 block discarded – undo
46 46
         $args = func_get_args();
47 47
 
48 48
         if (count($args)) {
49
-            if (kernel()->services->has($args[ 0 ])) {
50
-                if (isset($args[ 1 ]) and is_array($args[ 1 ])) {
51
-                    return kernel()->services->get($args[ 0 ], $args[ 1 ]);
49
+            if (kernel()->services->has($args[0])) {
50
+                if (isset($args[1]) and is_array($args[1])) {
51
+                    return kernel()->services->get($args[0], $args[1]);
52 52
                 }
53 53
 
54
-                return kernel()->services->get($args[ 0 ]);
54
+                return kernel()->services->get($args[0]);
55 55
             }
56 56
 
57 57
             return false;
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 
98 98
         if (count($args)) {
99 99
             if (services()->has('language')) {
100
-                $language =& services()->get('language');
100
+                $language = & services()->get('language');
101 101
 
102 102
                 return call_user_func_array([&$language, 'getLine'], $args);
103 103
             }
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
 
126 126
         if (count($args)) {
127 127
             if (services()->has('logger')) {
128
-                $logger =& services('logger');
128
+                $logger = & services('logger');
129 129
 
130 130
                 return call_user_func_array([&$logger, 'log'], $args);
131 131
             }
Please login to merge, or discard this patch.
src/DataStructures/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
                     $newValue = [];
92 92
 
93 93
                     foreach ($value as $key => $val) {
94
-                        $newValue[ camelcase($key) ] = $val;
94
+                        $newValue[camelcase($key)] = $val;
95 95
                     }
96 96
 
97 97
                     parent::offsetSet(camelcase($offset), new self($newValue));
Please login to merge, or discard this patch.
src/Http/Abstracts/AbstractTransport.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,11 +52,11 @@  discard block
 block discarded – undo
52 52
      */
53 53
     public function getOption($name, $default = null)
54 54
     {
55
-        if ( ! isset($this->options[ $name ])) {
55
+        if ( ! isset($this->options[$name])) {
56 56
             return $default;
57 57
         }
58 58
 
59
-        return $this->options[ $name ];
59
+        return $this->options[$name];
60 60
     }
61 61
 
62 62
     // ------------------------------------------------------------------------
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      */
74 74
     public function setOption($name, $value)
75 75
     {
76
-        $this->options[ $name ] = $value;
76
+        $this->options[$name] = $value;
77 77
 
78 78
         return $this;
79 79
     }
Please login to merge, or discard this patch.
src/Http/Input.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -432,13 +432,13 @@
 block discarded – undo
432 432
         }
433 433
 
434 434
         foreach ([
435
-                     'HTTP_CLIENT_IP',
436
-                     'HTTP_FORWARDED',
437
-                     'HTTP_X_FORWARDED_FOR',
438
-                     'HTTP_X_CLIENT_IP',
439
-                     'HTTP_X_CLUSTER_CLIENT_IP',
440
-                     'REMOTE_ADDR',
441
-                 ] as $header
435
+                        'HTTP_CLIENT_IP',
436
+                        'HTTP_FORWARDED',
437
+                        'HTTP_X_FORWARDED_FOR',
438
+                        'HTTP_X_CLIENT_IP',
439
+                        'HTTP_X_CLUSTER_CLIENT_IP',
440
+                        'REMOTE_ADDR',
441
+                    ] as $header
442 442
         ) {
443 443
             if (null !== ($ipAddress = $this->server($header))) {
444 444
                 if (filter_var($ipAddress, FILTER_VALIDATE_IP)) {
Please login to merge, or discard this patch.
Spacing   +47 added lines, -47 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
             return;
45 45
         }
46 46
 
47
-        if (isset($_REQUEST[ 'GLOBALS' ])) {
47
+        if (isset($_REQUEST['GLOBALS'])) {
48 48
             die('GLOBALS overwrite attempt detected');
49 49
         }
50 50
 
@@ -54,8 +54,8 @@  discard block
 block discarded – undo
54 54
         $input = array_merge($_GET, $_POST, $_COOKIE, $_SERVER, $_ENV, $_FILES,
55 55
             isset($_SESSION) && is_array($_SESSION) ? $_SESSION : []);
56 56
         foreach ($input as $k => $v) {
57
-            if ( ! in_array($k, $no_unset) && isset($GLOBALS[ $k ])) {
58
-                unset($GLOBALS[ $k ]);
57
+            if ( ! in_array($k, $no_unset) && isset($GLOBALS[$k])) {
58
+                unset($GLOBALS[$k]);
59 59
             }
60 60
         }
61 61
 
@@ -68,51 +68,51 @@  discard block
 block discarded – undo
68 68
         $_SERVER = array_merge($default_server_values, $_SERVER);
69 69
 
70 70
         // Fix for IIS when running with PHP ISAPI
71
-        if (empty($_SERVER[ 'REQUEST_URI' ]) || (PHP_SAPI != 'cgi-fcgi' && preg_match('/^Microsoft-IIS\//',
72
-                    $_SERVER[ 'SERVER_SOFTWARE' ]))) {
71
+        if (empty($_SERVER['REQUEST_URI']) || (PHP_SAPI != 'cgi-fcgi' && preg_match('/^Microsoft-IIS\//',
72
+                    $_SERVER['SERVER_SOFTWARE']))) {
73 73
 
74
-            if (isset($_SERVER[ 'HTTP_X_ORIGINAL_URL' ])) {
74
+            if (isset($_SERVER['HTTP_X_ORIGINAL_URL'])) {
75 75
                 // IIS Mod-Rewrite
76
-                $_SERVER[ 'REQUEST_URI' ] = $_SERVER[ 'HTTP_X_ORIGINAL_URL' ];
77
-            } elseif (isset($_SERVER[ 'HTTP_X_REWRITE_URL' ])) {
76
+                $_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_ORIGINAL_URL'];
77
+            } elseif (isset($_SERVER['HTTP_X_REWRITE_URL'])) {
78 78
                 // IIS Isapi_Rewrite
79
-                $_SERVER[ 'REQUEST_URI' ] = $_SERVER[ 'HTTP_X_REWRITE_URL' ];
79
+                $_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_REWRITE_URL'];
80 80
             } else {
81 81
                 // Use ORIG_PATH_INFO if there is no PATH_INFO
82
-                if ( ! isset($_SERVER[ 'PATH_INFO' ]) && isset($_SERVER[ 'ORIG_PATH_INFO' ])) {
83
-                    $_SERVER[ 'PATH_INFO' ] = $_SERVER[ 'ORIG_PATH_INFO' ];
82
+                if ( ! isset($_SERVER['PATH_INFO']) && isset($_SERVER['ORIG_PATH_INFO'])) {
83
+                    $_SERVER['PATH_INFO'] = $_SERVER['ORIG_PATH_INFO'];
84 84
                 }
85 85
 
86 86
                 // Some IIS + PHP configurations puts the script-name in the path-info (No need to append it twice)
87
-                if (isset($_SERVER[ 'PATH_INFO' ])) {
88
-                    if ($_SERVER[ 'PATH_INFO' ] == $_SERVER[ 'SCRIPT_NAME' ]) {
89
-                        $_SERVER[ 'REQUEST_URI' ] = $_SERVER[ 'PATH_INFO' ];
87
+                if (isset($_SERVER['PATH_INFO'])) {
88
+                    if ($_SERVER['PATH_INFO'] == $_SERVER['SCRIPT_NAME']) {
89
+                        $_SERVER['REQUEST_URI'] = $_SERVER['PATH_INFO'];
90 90
                     } else {
91
-                        $_SERVER[ 'REQUEST_URI' ] = $_SERVER[ 'SCRIPT_NAME' ] . $_SERVER[ 'PATH_INFO' ];
91
+                        $_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME'] . $_SERVER['PATH_INFO'];
92 92
                     }
93 93
                 }
94 94
 
95 95
                 // Append the query string if it exists and isn't null
96
-                if ( ! empty($_SERVER[ 'QUERY_STRING' ])) {
97
-                    $_SERVER[ 'REQUEST_URI' ] .= '?' . $_SERVER[ 'QUERY_STRING' ];
96
+                if ( ! empty($_SERVER['QUERY_STRING'])) {
97
+                    $_SERVER['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING'];
98 98
                 }
99 99
             }
100 100
         }
101 101
 
102 102
         // Fix for PHP as CGI hosts that set SCRIPT_FILENAME to something ending in php.cgi for all requests
103
-        if (isset($_SERVER[ 'SCRIPT_FILENAME' ]) && (strpos($_SERVER[ 'SCRIPT_FILENAME' ],
104
-                    'php.cgi') == strlen($_SERVER[ 'SCRIPT_FILENAME' ]) - 7)) {
105
-            $_SERVER[ 'SCRIPT_FILENAME' ] = $_SERVER[ 'PATH_TRANSLATED' ];
103
+        if (isset($_SERVER['SCRIPT_FILENAME']) && (strpos($_SERVER['SCRIPT_FILENAME'],
104
+                    'php.cgi') == strlen($_SERVER['SCRIPT_FILENAME']) - 7)) {
105
+            $_SERVER['SCRIPT_FILENAME'] = $_SERVER['PATH_TRANSLATED'];
106 106
         }
107 107
 
108 108
         // Fix for Dreamhost and other PHP as CGI hosts
109
-        if (strpos($_SERVER[ 'SCRIPT_NAME' ], 'php.cgi') !== false) {
110
-            unset($_SERVER[ 'PATH_INFO' ]);
109
+        if (strpos($_SERVER['SCRIPT_NAME'], 'php.cgi') !== false) {
110
+            unset($_SERVER['PATH_INFO']);
111 111
         }
112 112
 
113 113
         // Fix empty PHP_SELF
114 114
         if (empty($PHP_SELF)) {
115
-            $_SERVER[ 'PHP_SELF' ] = $PHP_SELF = preg_replace('/(\?.*)?$/', '', $_SERVER[ 'REQUEST_URI' ]);
115
+            $_SERVER['PHP_SELF'] = $PHP_SELF = preg_replace('/(\?.*)?$/', '', $_SERVER['REQUEST_URI']);
116 116
         }
117 117
     }
118 118
 
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
         // Use $_GET directly here, since filter_has_var only
138 138
         // checks the initial GET data, not anything that might
139 139
         // have been added since.
140
-        return isset($_GET[ $offset ])
140
+        return isset($_GET[$offset])
141 141
             ? $this->get($offset, $filter)
142 142
             : $this->post($offset, $filter);
143 143
     }
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
             $loopThrough = [];
224 224
 
225 225
             foreach ($offset as $key) {
226
-                $loopThrough[ $key ] = $this->filter($type, $key, $filter);
226
+                $loopThrough[$key] = $this->filter($type, $key, $filter);
227 227
             }
228 228
 
229 229
             if (empty($loopThrough)) {
@@ -237,38 +237,38 @@  discard block
 block discarded – undo
237 237
             // of the simpler filter_input();
238 238
             switch ($type) {
239 239
                 case INPUT_GET:
240
-                    $value = isset($_GET[ $offset ])
241
-                        ? $_GET[ $offset ]
240
+                    $value = isset($_GET[$offset])
241
+                        ? $_GET[$offset]
242 242
                         : null;
243 243
                     break;
244 244
                 case INPUT_POST:
245
-                    $value = isset($_POST[ $offset ])
246
-                        ? $_POST[ $offset ]
245
+                    $value = isset($_POST[$offset])
246
+                        ? $_POST[$offset]
247 247
                         : null;
248 248
                     break;
249 249
                 case INPUT_SERVER:
250
-                    $value = isset($_SERVER[ $offset ])
251
-                        ? $_SERVER[ $offset ]
250
+                    $value = isset($_SERVER[$offset])
251
+                        ? $_SERVER[$offset]
252 252
                         : null;
253 253
                     break;
254 254
                 case INPUT_ENV:
255
-                    $value = isset($_ENV[ $offset ])
256
-                        ? $_ENV[ $offset ]
255
+                    $value = isset($_ENV[$offset])
256
+                        ? $_ENV[$offset]
257 257
                         : null;
258 258
                     break;
259 259
                 case INPUT_COOKIE:
260
-                    $value = isset($_COOKIE[ $offset ])
261
-                        ? $_COOKIE[ $offset ]
260
+                    $value = isset($_COOKIE[$offset])
261
+                        ? $_COOKIE[$offset]
262 262
                         : null;
263 263
                     break;
264 264
                 case INPUT_REQUEST:
265
-                    $value = isset($_REQUEST[ $offset ])
266
-                        ? $_REQUEST[ $offset ]
265
+                    $value = isset($_REQUEST[$offset])
266
+                        ? $_REQUEST[$offset]
267 267
                         : null;
268 268
                     break;
269 269
                 case INPUT_SESSION:
270
-                    $value = isset($_SESSION[ $offset ])
271
-                        ? $_SESSION[ $offset ]
270
+                    $value = isset($_SESSION[$offset])
271
+                        ? $_SESSION[$offset]
272 272
                         : null;
273 273
                     break;
274 274
                 default:
@@ -327,13 +327,13 @@  discard block
 block discarded – undo
327 327
     {
328 328
         foreach ($data as $key => $value) {
329 329
             if (is_array($value) AND is_array($filter)) {
330
-                $data[ $key ] = filter_var_array($value, $filter);
330
+                $data[$key] = filter_var_array($value, $filter);
331 331
             } elseif (is_array($value)) {
332
-                $data[ $key ] = $this->filterRecursive($value, $filter);
332
+                $data[$key] = $this->filterRecursive($value, $filter);
333 333
             } elseif (isset($filter)) {
334
-                $data[ $key ] = filter_var($value, $filter);
334
+                $data[$key] = filter_var($value, $filter);
335 335
             } else {
336
-                $data[ $key ] = $value;
336
+                $data[$key] = $value;
337 337
             }
338 338
         }
339 339
 
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
         // Use $_POST directly here, since filter_has_var only
383 383
         // checks the initial POST data, not anything that might
384 384
         // have been added since.
385
-        return isset($_POST[ $offset ])
385
+        return isset($_POST[$offset])
386 386
             ? $this->post($offset, $filter)
387 387
             : $this->get($offset, $filter);
388 388
     }
@@ -405,8 +405,8 @@  discard block
 block discarded – undo
405 405
         $uploadFiles = server_request()->getUploadedFiles();
406 406
 
407 407
         if (isset($offset)) {
408
-            if (isset($uploadFiles[ $offset ])) {
409
-                return $uploadFiles[ $offset ];
408
+            if (isset($uploadFiles[$offset])) {
409
+                return $uploadFiles[$offset];
410 410
             }
411 411
         }
412 412
 
@@ -632,6 +632,6 @@  discard block
 block discarded – undo
632 632
      */
633 633
     final public function submit()
634 634
     {
635
-        return (bool)isset($_POST[ 'submit' ]);
635
+        return (bool)isset($_POST['submit']);
636 636
     }
637 637
 }
638 638
\ No newline at end of file
Please login to merge, or discard this patch.