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 ( f0e280...adf324 )
by sunsky
02:17
created
src/MultiRequest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 	 * @return array(Response)
70 70
 	 */
71 71
 	public function execute() {
72
-		$sleepTime = 1000;//microsecond, prevent  CPU 100%
72
+		$sleepTime = 1000; //microsecond, prevent  CPU 100%
73 73
         //prepare conf
74 74
 //		while (($multiFlg = curl_multi_exec(self::$multiHandler, $active)) == CURLM_CALL_MULTI_PERFORM);
75 75
         //fetch data
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 //        }
85 85
 
86 86
 
87
-        do{
87
+        do {
88 88
             curl_multi_exec(self::$multiHandler, $active);
89 89
             // bug in PHP 5.3.18+ where curl_multi_select can return -1
90 90
 			// https://bugs.php.net/bug.php?id=63411
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
 //                usleep($sleepTime);
93 93
             }
94 94
 //            usleep($sleepTime);
95
-        }while($active);
95
+        }while ($active);
96 96
 
97 97
 
98 98
         $return = array();
Please login to merge, or discard this patch.