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 — master ( 7f1c0a...b13be2 )
by Ruslan
31s queued 13s
created
src/Pinba.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
         if ($this->fixScriptName) {
146 146
             $scriptName = php_sapi_name() === 'cli'
147 147
                 ? implode(' ', $_SERVER['argv'])
148
-                : ('/' . \Yii::app()->urlManager->parseUrl(\Yii::app()->request));
148
+                : ('/'.\Yii::app()->urlManager->parseUrl(\Yii::app()->request));
149 149
 
150 150
             $this->setScriptName($scriptName);
151 151
         }
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
             }
160 160
 
161 161
             if (!$event[0] instanceof \CComponent) {
162
-                throw new \InvalidArgumentException(var_export($event[0], true) . ' is not string or instance of CComponent');
162
+                throw new \InvalidArgumentException(var_export($event[0], true).' is not string or instance of CComponent');
163 163
             }
164 164
 
165 165
             call_user_func_array([$eventHandler, 'attach'], $event);
Please login to merge, or discard this patch.
src/EventHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,6 +94,6 @@
 block discarded – undo
94 94
      */
95 95
     private function timerKey(\CEvent $event, $action)
96 96
     {
97
-        return get_class($event->sender) . '@' . $action;
97
+        return get_class($event->sender).'@'.$action;
98 98
     }
99 99
 }
100 100
\ No newline at end of file
Please login to merge, or discard this patch.