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.
Completed
Push — 3.0 ( 21ef47...f17077 )
by Vermeulen
02:50
created
src/class/core/Errors.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
     
11 11
     public function __construct(Application $app)
12 12
     {
13
-        self::$app   = $app;
13
+        self::$app = $app;
14 14
         
15 15
         $this->defineErrorHandler();
16 16
         $this->defineExceptionHandler();
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     
59 59
     protected static function getApp()
60 60
     {
61
-        if(is_null(self::$app)) {
61
+        if (is_null(self::$app)) {
62 62
             self::$app = Application::getInstance();
63 63
         }
64 64
         
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
     
86 86
     protected static function defineRenderToUse($renderConfig)
87 87
     {
88
-        if($renderConfig['active'] === false) {
88
+        if ($renderConfig['active'] === false) {
89 89
             return false;
90 90
         }
91 91
         
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
             return $renderConfig['cli'];
94 94
         }
95 95
         
96
-        if(isset($renderConfig['default'])) {
96
+        if (isset($renderConfig['default'])) {
97 97
             return $renderConfig['default'];
98 98
         }
99 99
         
Please login to merge, or discard this patch.