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 ( c097a6...9587da )
by Steeven
02:27
created
src/Libraries/AccessControl/User.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      */
65 65
     public function setApp($app)
66 66
     {
67
-        if($app = modules()->getApp($app)) {
67
+        if ($app = modules()->getApp($app)) {
68 68
             $this->app = $app;
69 69
         }
70 70
 
@@ -102,10 +102,10 @@  discard block
 block discarded – undo
102 102
             if (isset($account)) {
103 103
                 foreach ($account as $key => $value) {
104 104
                     if (strpos($key, 'record') !== false) {
105
-                        unset($account[ $key ]);
105
+                        unset($account[$key]);
106 106
                     } elseif (in_array($key,
107 107
                         ['password', 'pin', 'token', 'sso', 'id_sys_user', 'id_sys_module', 'id_sys_module_role'])) {
108
-                        unset($account[ $key ]);
108
+                        unset($account[$key]);
109 109
                     }
110 110
                 }
111 111
 
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
             $column = 'id';
135 135
         } elseif (filter_var($username, FILTER_VALIDATE_EMAIL)) {
136 136
             $column = 'email';
137
-        } elseif (preg_match($this->config[ 'msisdnRegex' ], $username)) {
137
+        } elseif (preg_match($this->config['msisdnRegex'], $username)) {
138 138
             $column = 'msisdn';
139 139
         }
140 140
 
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
     public function loggedIn()
159 159
     {
160 160
         if (parent::loggedIn()) {
161
-            $account = new Account($_SESSION[ 'account' ]);
161
+            $account = new Account($_SESSION['account']);
162 162
 
163 163
             if ($user = models('users')->findWhere(['username' => $account->username], 1)) {
164 164
                 // Store Account Profile
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
             $column = 'id';
208 208
         } elseif (filter_var($username, FILTER_VALIDATE_EMAIL)) {
209 209
             $column = 'email';
210
-        } elseif (preg_match($this->config[ 'msisdnRegex' ], $username)) {
210
+        } elseif (preg_match($this->config['msisdnRegex'], $username)) {
211 211
             $column = 'msisdn';
212 212
         } elseif (strpos($username, 'token-') !== false) {
213 213
             $username = str_replace('token-', '', $username);
@@ -222,15 +222,15 @@  discard block
 block discarded – undo
222 222
 
223 223
             foreach ($account as $key => $value) {
224 224
                 if (strpos($key, 'record') !== false) {
225
-                    unset($account[ $key ]);
225
+                    unset($account[$key]);
226 226
                 } elseif (in_array($key, ['password', 'pin', 'token', 'sso'])) {
227
-                    unset($account[ $key ]);
227
+                    unset($account[$key]);
228 228
                 }
229 229
             }
230 230
 
231 231
             if ($column === 'token') {
232 232
                 models('users')->update([
233
-                    'id'    => $account[ 'id' ],
233
+                    'id'    => $account['id'],
234 234
                     'token' => null,
235 235
                 ]);
236 236
             }
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
     public function getIframeCode()
255 255
     {
256 256
         if ($this->signedOn() && $this->loggedIn() === false) {
257
-            return '<iframe id="sign-on-iframe" width="1" height="1" src="' . rtrim($this->config[ 'sso' ][ 'server' ],
257
+            return '<iframe id="sign-on-iframe" width="1" height="1" src="' . rtrim($this->config['sso']['server'],
258 258
                     '/') . '" style="display: none; visibility: hidden;"></iframe>';
259 259
         }
260 260
 
Please login to merge, or discard this patch.
src/Models/Sql/Traits/HierarchicalTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
                         ]);
86 86
                 }
87 87
 
88
-                $update[ $this->primaryKey ] = $child->{$this->primaryKey};
88
+                $update[$this->primaryKey] = $child->{$this->primaryKey};
89 89
 
90 90
                 if ($this->qb
91 91
                     ->table($this->table)
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
                         ->update($update = [
101 101
                             'record_right' => $right,
102 102
                         ]);
103
-                    $update[ $this->primaryKey ] = $child->{$this->primaryKey};
103
+                    $update[$this->primaryKey] = $child->{$this->primaryKey};
104 104
                 }
105 105
 
106 106
                 $i++;
Please login to merge, or discard this patch.
src/Services/Language.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
         $directory = new \RecursiveIteratorIterator(new \RecursiveCallbackFilterIterator(
97 97
             new \RecursiveDirectoryIterator(PATH_ROOT,
98 98
                 \FilesystemIterator::SKIP_DOTS | \FilesystemIterator::FOLLOW_SYMLINKS),
99
-            function ($current, $key, $iterator) {
99
+            function($current, $key, $iterator) {
100 100
                 if ($current->isDir()) {
101 101
                     // exclude build directory
102 102
                     if (in_array($current->getFilename(), [
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 
119 119
                 $files[] = $packageJsonFileInfo;
120 120
 
121
-                if ($packageJsonFileInfo[ 'filename' ] === 'language') {
121
+                if ($packageJsonFileInfo['filename'] === 'language') {
122 122
                     if (is_cli()) {
123 123
                         output()->verbose(
124 124
                             (new Format())
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
                             );
142 142
                         }
143 143
 
144
-                        $registry[ $package->getDirName() ] = $package;
144
+                        $registry[$package->getDirName()] = $package;
145 145
                     } elseif (is_cli()) {
146 146
                         output()->verbose(
147 147
                             (new Format())
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
     {
186 186
         if (isset($package)) {
187 187
             if ($this->registered($package)) {
188
-                return $this->registry[ $package ];
188
+                return $this->registry[$package];
189 189
             }
190 190
 
191 191
             return false;
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
      */
206 206
     public function registered($package)
207 207
     {
208
-        return isset($this->registry[ $package ]);
208
+        return isset($this->registry[$package]);
209 209
     }
210 210
 
211 211
     // ------------------------------------------------------------------------
Please login to merge, or discard this patch.
src/Containers/Modules.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -487,11 +487,11 @@
 block discarded – undo
487 487
                 $moduleParentSegments = [];
488 488
 
489 489
                 foreach ([
490
-                             'apps',
491
-                             'modules',
492
-                             'components',
493
-                             'plugins',
494
-                         ] as $moduleType
490
+                                'apps',
491
+                                'modules',
492
+                                'components',
493
+                                'plugins',
494
+                            ] as $moduleType
495 495
                 ) {
496 496
                     if (false !== ($segmentKey = array_search($modularType, $moduleSegments))) {
497 497
                         $moduleParentSegments = array_slice($moduleSegments, 0, $segmentKey);
Please login to merge, or discard this patch.
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -188,13 +188,13 @@  discard block
 block discarded – undo
188 188
 
189 189
         if (isset($config) AND is_array($config)) {
190 190
             // Set default timezone
191
-            if (isset($config[ 'datetime' ][ 'timezone' ])) {
192
-                date_default_timezone_set($config[ 'datetime' ][ 'timezone' ]);
191
+            if (isset($config['datetime']['timezone'])) {
192
+                date_default_timezone_set($config['datetime']['timezone']);
193 193
             }
194 194
 
195 195
             // Setup Language Ideom and Locale
196
-            if (isset($config[ 'language' ])) {
197
-                language()->setDefault($config[ 'language' ]);
196
+            if (isset($config['language'])) {
197
+                language()->setDefault($config['language']);
198 198
             }
199 199
 
200 200
             config()->merge($config);
@@ -424,8 +424,8 @@  discard block
 block discarded – undo
424 424
                 $packageJsonFile = str_replace(['\\', '/'], DIRECTORY_SEPARATOR, $packageJsonFile);
425 425
                 $packageJsonFileInfo = pathinfo($packageJsonFile);
426 426
 
427
-                if ($packageJsonFileInfo[ 'filename' ] === 'widget' or
428
-                    $packageJsonFileInfo[ 'filename' ] === 'language' or
427
+                if ($packageJsonFileInfo['filename'] === 'widget' or
428
+                    $packageJsonFileInfo['filename'] === 'language' or
429 429
                     strpos($packageJsonFile, '.svn') !== false // subversion properties file conflict.
430 430
                 ) {
431 431
                     continue;
@@ -455,8 +455,8 @@  discard block
 block discarded – undo
455 455
                 }
456 456
 
457 457
                 if (strpos($packageJsonFile,
458
-                        $modularType = ucfirst(plural($packageJsonFileInfo[ 'filename' ])) . DIRECTORY_SEPARATOR) === false) {
459
-                    $modularType = ucfirst($packageJsonFileInfo[ 'filename' ]) . DIRECTORY_SEPARATOR;
458
+                        $modularType = ucfirst(plural($packageJsonFileInfo['filename'])) . DIRECTORY_SEPARATOR) === false) {
459
+                    $modularType = ucfirst($packageJsonFileInfo['filename']) . DIRECTORY_SEPARATOR;
460 460
                 }
461 461
 
462 462
                 $modularType = strtolower(rtrim($modularType, DIRECTORY_SEPARATOR));
@@ -471,7 +471,7 @@  discard block
 block discarded – undo
471 471
                                 PATH_PUBLIC,
472 472
                                 PATH_RESOURCES,
473 473
                                 PATH_APP,
474
-                                $packageJsonFileInfo[ 'basename' ],
474
+                                $packageJsonFileInfo['basename'],
475 475
                             ],
476 476
                             '',
477 477
                             $packageJsonFile
@@ -480,7 +480,7 @@  discard block
 block discarded – undo
480 480
                     )
481 481
                 );
482 482
 
483
-                $moduleSegments = array_map(function ($string) {
483
+                $moduleSegments = array_map(function($string) {
484 484
                     return dash(snakecase($string));
485 485
                 }, $moduleSegments);
486 486
 
@@ -496,7 +496,7 @@  discard block
 block discarded – undo
496 496
                     if (false !== ($segmentKey = array_search($modularType, $moduleSegments))) {
497 497
                         $moduleParentSegments = array_slice($moduleSegments, 0, $segmentKey);
498 498
 
499
-                        unset($moduleSegments[ $segmentKey ]);
499
+                        unset($moduleSegments[$segmentKey]);
500 500
                         break;
501 501
                     }
502 502
                 }
@@ -507,29 +507,29 @@  discard block
 block discarded – undo
507 507
                     str_replace(
508 508
                         PATH_ROOT,
509 509
                         '',
510
-                        $packageJsonFileInfo[ 'dirname' ]
510
+                        $packageJsonFileInfo['dirname']
511 511
                     ),
512 512
                     false
513 513
                 );
514 514
 
515
-                if (isset($packageJsonMetadata[ 'namespace' ])) {
516
-                    $moduleNamespace = $packageJsonMetadata[ 'namespace' ];
517
-                    unset($packageJsonMetadata[ 'namespace' ]);
515
+                if (isset($packageJsonMetadata['namespace'])) {
516
+                    $moduleNamespace = $packageJsonMetadata['namespace'];
517
+                    unset($packageJsonMetadata['namespace']);
518 518
                 }
519 519
 
520 520
                 $registryKey = implode('/', $moduleSegments);
521 521
 
522 522
                 if ($registryKey === '') {
523
-                    if ($packageJsonFileInfo[ 'dirname' ] . DIRECTORY_SEPARATOR !== PATH_APP and $modularType === 'app') {
523
+                    if ($packageJsonFileInfo['dirname'] . DIRECTORY_SEPARATOR !== PATH_APP and $modularType === 'app') {
524 524
                         $registryKey = dash(snakecase(
525
-                            pathinfo($packageJsonFileInfo[ 'dirname' ], PATHINFO_FILENAME)));
525
+                            pathinfo($packageJsonFileInfo['dirname'], PATHINFO_FILENAME)));
526 526
                     }
527 527
                 }
528 528
 
529
-                $registry[ $registryKey ] = (new DataStructures\Module(
530
-                    $packageJsonFileInfo[ 'dirname' ]
529
+                $registry[$registryKey] = (new DataStructures\Module(
530
+                    $packageJsonFileInfo['dirname']
531 531
                 ))
532
-                    ->setType($packageJsonFileInfo[ 'filename' ])
532
+                    ->setType($packageJsonFileInfo['filename'])
533 533
                     ->setNamespace($moduleNamespace)
534 534
                     ->setSegments($moduleSegments)
535 535
                     ->setParentSegments($moduleParentSegments)
@@ -691,8 +691,8 @@  discard block
 block discarded – undo
691 691
         $segment = dash($segment);
692 692
 
693 693
         if ($this->exists($segment)) {
694
-            if ($this->registry[ $segment ] instanceof DataStructures\Module) {
695
-                return $this->registry[ $segment ];
694
+            if ($this->registry[$segment] instanceof DataStructures\Module) {
695
+                return $this->registry[$segment];
696 696
             }
697 697
         }
698 698
 
@@ -728,8 +728,8 @@  discard block
 block discarded – undo
728 728
      */
729 729
     public function first()
730 730
     {
731
-        if (isset($this->registry[ '' ])) {
732
-            return $this->registry[ '' ];
731
+        if (isset($this->registry[''])) {
732
+            return $this->registry[''];
733 733
         } elseif (reset($this->registry)->type === 'APP') {
734 734
             return reset($this->registry);
735 735
         }
@@ -751,7 +751,7 @@  discard block
 block discarded – undo
751 751
         $segments = (is_array($segments) ? implode('/', array_map('dash', $segments)) : $segments);
752 752
 
753 753
         if ($this->exists($segments)) {
754
-            return $this->registry[ $segments ];
754
+            return $this->registry[$segments];
755 755
         }
756 756
 
757 757
         return false;
@@ -772,7 +772,7 @@  discard block
 block discarded – undo
772 772
 
773 773
         foreach ($this as $key => $module) {
774 774
             if ($module instanceof DataStructures\Module) {
775
-                $namespaces[ $key ] = new SplNamespaceInfo($module->getNamespace(), $module->getRealPath());
775
+                $namespaces[$key] = new SplNamespaceInfo($module->getNamespace(), $module->getRealPath());
776 776
             }
777 777
         }
778 778
 
Please login to merge, or discard this patch.
src/Containers/Modules/DataStructures/Module.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -195,10 +195,10 @@  discard block
 block discarded – undo
195 195
      */
196 196
     public function setProperties(array $properties)
197 197
     {
198
-        if (isset($properties[ 'presets' ])) {
199
-            $this->setPresets($properties[ 'presets' ]);
198
+        if (isset($properties['presets'])) {
199
+            $this->setPresets($properties['presets']);
200 200
 
201
-            unset($properties[ 'presets' ]);
201
+            unset($properties['presets']);
202 202
         }
203 203
 
204 204
         $this->properties = $properties;
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
         $themes = [];
289 289
         foreach ($directory->getTree() as $themeName => $themeTree) {
290 290
             if (($theme = $this->getTheme($themeName)) instanceof Module\Theme) {
291
-                $themes[ $themeName ] = $theme;
291
+                $themes[$themeName] = $theme;
292 292
             }
293 293
         }
294 294
 
@@ -515,7 +515,7 @@  discard block
 block discarded – undo
515 515
 
516 516
                     if ( ! empty($controller->name) and ! in_array($controller->getParameter(),
517 517
                             ['login', 'pages', 'setup', 'license'])) {
518
-                        $controllers[ $controller->getParameter() ] = $controller;
518
+                        $controllers[$controller->getParameter()] = $controller;
519 519
                     }
520 520
                 }
521 521
             }
Please login to merge, or discard this patch.
src/Containers/Modules/DataStructures/Module/Controller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
                 }
112 112
             }
113 113
 
114
-            if(empty($this->methods) and $this->hasMethod('route')) {
114
+            if (empty($this->methods) and $this->hasMethod('route')) {
115 115
                 $method = $this->getMethod('route');
116 116
                 $method->segment = dash($method->name);
117 117
                 $method->segments = implode('/', $segments);
Please login to merge, or discard this patch.