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/Http/UserAgent.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -152,8 +152,8 @@  discard block
 block discarded – undo
152 152
      */
153 153
     public function __construct()
154 154
     {
155
-        if (isset($_SERVER[ 'HTTP_USER_AGENT' ])) {
156
-            $this->string = trim($_SERVER[ 'HTTP_USER_AGENT' ]);
155
+        if (isset($_SERVER['HTTP_USER_AGENT'])) {
156
+            $this->string = trim($_SERVER['HTTP_USER_AGENT']);
157 157
         }
158 158
 
159 159
         if ($this->string !== null && $this->loadAgentFile()) {
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
         }
277 277
 
278 278
         // Check for a specific browser
279
-        return (isset(static::$browsers[ $key ]) && $this->browser === static::$browsers[ $key ]);
279
+        return (isset(static::$browsers[$key]) && $this->browser === static::$browsers[$key]);
280 280
     }
281 281
 
282 282
     // --------------------------------------------------------------------
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
         }
301 301
 
302 302
         // Check for a specific robot
303
-        return (isset(static::$robots[ $key ]) && $this->robot === static::$robots[ $key ]);
303
+        return (isset(static::$robots[$key]) && $this->robot === static::$robots[$key]);
304 304
     }
305 305
 
306 306
     // --------------------------------------------------------------------
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
         }
327 327
 
328 328
         // Check for a specific robot
329
-        return (isset(static::$mobiles[ $key ]) && $this->mobile === static::$mobiles[ $key ]);
329
+        return (isset(static::$mobiles[$key]) && $this->mobile === static::$mobiles[$key]);
330 330
     }
331 331
 
332 332
     // --------------------------------------------------------------------
@@ -341,10 +341,10 @@  discard block
 block discarded – undo
341 341
     public function isReferral()
342 342
     {
343 343
         if ( ! isset($this->referer)) {
344
-            if (empty($_SERVER[ 'HTTP_REFERER' ])) {
344
+            if (empty($_SERVER['HTTP_REFERER'])) {
345 345
                 $this->referer = false;
346 346
             } else {
347
-                $referer_host = @parse_url($_SERVER[ 'HTTP_REFERER' ], PHP_URL_HOST);
347
+                $referer_host = @parse_url($_SERVER['HTTP_REFERER'], PHP_URL_HOST);
348 348
                 $own_host = parse_url(base_url(), PHP_URL_HOST);
349 349
 
350 350
                 $this->referer = ($referer_host && $referer_host !== $own_host);
@@ -449,7 +449,7 @@  discard block
 block discarded – undo
449 449
      */
450 450
     public function isHttpReferrerExists()
451 451
     {
452
-        return empty($_SERVER[ 'HTTP_REFERER' ]) ? '' : trim($_SERVER[ 'HTTP_REFERER' ]);
452
+        return empty($_SERVER['HTTP_REFERER']) ? '' : trim($_SERVER['HTTP_REFERER']);
453 453
     }
454 454
 
455 455
     // --------------------------------------------------------------------
@@ -497,13 +497,13 @@  discard block
 block discarded – undo
497 497
      */
498 498
     protected function setLanguages()
499 499
     {
500
-        if ((count($this->languages) === 0) && ! empty($_SERVER[ 'HTTP_ACCEPT_LANGUAGE' ])) {
500
+        if ((count($this->languages) === 0) && ! empty($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
501 501
             $this->languages = explode(
502 502
                 ',',
503 503
                 preg_replace(
504 504
                     '/(;\s?q=[0-9\.]+)|\s/i',
505 505
                     '',
506
-                    strtolower(trim($_SERVER[ 'HTTP_ACCEPT_LANGUAGE' ]))
506
+                    strtolower(trim($_SERVER['HTTP_ACCEPT_LANGUAGE']))
507 507
                 )
508 508
             );
509 509
         }
@@ -557,13 +557,13 @@  discard block
 block discarded – undo
557 557
      */
558 558
     protected function setCharsets()
559 559
     {
560
-        if ((count($this->charsets) === 0) && ! empty($_SERVER[ 'HTTP_ACCEPT_CHARSET' ])) {
560
+        if ((count($this->charsets) === 0) && ! empty($_SERVER['HTTP_ACCEPT_CHARSET'])) {
561 561
             $this->charsets = explode(
562 562
                 ',',
563 563
                 preg_replace(
564 564
                     '/(;\s?q=.+)|\s/i',
565 565
                     '',
566
-                    strtolower(trim($_SERVER[ 'HTTP_ACCEPT_CHARSET' ]))
566
+                    strtolower(trim($_SERVER['HTTP_ACCEPT_CHARSET']))
567 567
                 )
568 568
             );
569 569
         }
@@ -618,7 +618,7 @@  discard block
 block discarded – undo
618 618
             foreach (static::$browsers as $key => $val) {
619 619
                 if (preg_match('|' . $key . '.*?([0-9\.]+)|i', $this->string, $match)) {
620 620
                     $this->isBrowser = true;
621
-                    $this->browserVersion = $match[ 1 ];
621
+                    $this->browserVersion = $match[1];
622 622
                     $this->browser = $val;
623 623
                     $this->setMobile();
624 624
 
Please login to merge, or discard this patch.
src/Cli/Commander.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function &__get($property)
32 32
     {
33
-        $get[ $property ] = false;
33
+        $get[$property] = false;
34 34
 
35 35
         // CodeIgniter property aliasing
36 36
         if ($property === 'load') {
@@ -45,6 +45,6 @@  discard block
 block discarded – undo
45 45
             return models('controller');
46 46
         }
47 47
 
48
-        return $get[ $property ];
48
+        return $get[$property];
49 49
     }
50 50
 }
51 51
\ No newline at end of file
Please login to merge, or discard this patch.
src/Cli/Commanders/Make/Widget.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
             exit(EXIT_ERROR);
74 74
         }
75 75
 
76
-        $jsonProperties[ 'name' ] = readable(
76
+        $jsonProperties['name'] = readable(
77 77
             pathinfo($widgetPath, PATHINFO_FILENAME),
78 78
             true
79 79
         );
@@ -86,10 +86,10 @@  discard block
 block discarded – undo
86 86
                 ) . '\\';
87 87
         } else {
88 88
             $namespace = prepare_class_name($this->namespace);
89
-            $jsonProperties[ 'namespace' ] = rtrim($namespace, '\\') . '\\';
89
+            $jsonProperties['namespace'] = rtrim($namespace, '\\') . '\\';
90 90
         }
91 91
 
92
-        $jsonProperties[ 'created' ] = date('d M Y');
92
+        $jsonProperties['created'] = date('d M Y');
93 93
 
94 94
         loader()->addNamespace($namespace, $widgetPath);
95 95
 
Please login to merge, or discard this patch.
src/Cli/Commanders/Make/Commander.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/Cli/Commanders/Make/Plugin.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
             exit(EXIT_ERROR);
101 101
         }
102 102
 
103
-        $jsonProperties[ 'name' ] = readable(
103
+        $jsonProperties['name'] = readable(
104 104
             pathinfo($modulePath, PATHINFO_FILENAME),
105 105
             true
106 106
         );
@@ -113,10 +113,10 @@  discard block
 block discarded – undo
113 113
                 ) . '\\';
114 114
         } else {
115 115
             $namespace = $this->namespace;
116
-            $jsonProperties[ 'namespace' ] = rtrim($namespace, '\\') . '\\';
116
+            $jsonProperties['namespace'] = rtrim($namespace, '\\') . '\\';
117 117
         }
118 118
 
119
-        $jsonProperties[ 'created' ] = date('d M Y');
119
+        $jsonProperties['created'] = date('d M Y');
120 120
 
121 121
         loader()->addNamespace($namespace, $modulePath);
122 122
 
Please login to merge, or discard this patch.
src/Cli/Commanders/Make/Theme.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -101,12 +101,12 @@
 block discarded – undo
101 101
 
102 102
         mkdir($themePath . 'partials' . DIRECTORY_SEPARATOR, 0777, true);
103 103
 
104
-        $jsonProperties[ 'name' ] = readable(
104
+        $jsonProperties['name'] = readable(
105 105
             $this->optionName,
106 106
             true
107 107
         );
108 108
 
109
-        $jsonProperties[ 'created' ] = date('d M Y');
109
+        $jsonProperties['created'] = date('d M Y');
110 110
 
111 111
         file_put_contents($themePath . 'theme.json', json_encode($jsonProperties, JSON_PRETTY_PRINT));
112 112
 
Please login to merge, or discard this patch.
src/Containers/Modules/DataStructures/Module/Widget.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -53,9 +53,9 @@  discard block
 block discarded – undo
53 53
             $properties = json_decode(file_get_contents($propFilePath), true);
54 54
 
55 55
             if (json_last_error() === JSON_ERROR_NONE) {
56
-                if (isset($properties[ 'config' ])) {
57
-                    $this->presets = $properties[ 'presets' ];
58
-                    unset($properties[ 'presets' ]);
56
+                if (isset($properties['config'])) {
57
+                    $this->presets = $properties['presets'];
58
+                    unset($properties['presets']);
59 59
                 }
60 60
 
61 61
                 $this->properties = $properties;
@@ -136,8 +136,8 @@  discard block
 block discarded – undo
136 136
      */
137 137
     public function getNamespace()
138 138
     {
139
-        if (isset($this->properties[ 'namespace' ])) {
140
-            return $this->properties[ 'namespace' ];
139
+        if (isset($this->properties['namespace'])) {
140
+            return $this->properties['namespace'];
141 141
         }
142 142
 
143 143
         $dir = $this->getRealPath();
Please login to merge, or discard this patch.
src/Containers/Models.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     public function __construct()
42 42
     {
43 43
         if ($config = config()->loadFile('database', true)) {
44
-            if ( ! empty($config[ 'default' ][ 'hostname' ]) AND ! empty($config[ 'default' ][ 'username' ])) {
44
+            if ( ! empty($config['default']['hostname']) AND ! empty($config['default']['username'])) {
45 45
 
46 46
                 if (profiler() !== false) {
47 47
                     profiler()->watch('Starting Database Service');
Please login to merge, or discard this patch.
src/Containers/Globals.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      */
104 104
     public function offsetExists($offset)
105 105
     {
106
-        return isset($GLOBALS[ $offset ]);
106
+        return isset($GLOBALS[$offset]);
107 107
     }
108 108
 
109 109
     // ------------------------------------------------------------------------
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      */
121 121
     public function &__get($offset)
122 122
     {
123
-        return $GLOBALS[ $offset ];
123
+        return $GLOBALS[$offset];
124 124
     }
125 125
 
126 126
     // ------------------------------------------------------------------------
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
      */
179 179
     public function offsetSet($offset, $value)
180 180
     {
181
-        $GLOBALS[ $offset ] = $value;
181
+        $GLOBALS[$offset] = $value;
182 182
     }
183 183
 
184 184
     // ------------------------------------------------------------------------
@@ -233,8 +233,8 @@  discard block
 block discarded – undo
233 233
      */
234 234
     public function offsetUnset($offset)
235 235
     {
236
-        if (isset($GLOBALS[ $offset ])) {
237
-            unset($GLOBALS[ $offset ]);
236
+        if (isset($GLOBALS[$offset])) {
237
+            unset($GLOBALS[$offset]);
238 238
         }
239 239
     }
240 240
 
@@ -435,6 +435,6 @@  discard block
 block discarded – undo
435 435
      */
436 436
     public function offsetGet($offset)
437 437
     {
438
-        return (isset($GLOBALS[ $offset ])) ? $GLOBALS[ $offset ] : false;
438
+        return (isset($GLOBALS[$offset])) ? $GLOBALS[$offset] : false;
439 439
     }
440 440
 }
441 441
\ No newline at end of file
Please login to merge, or discard this patch.