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 ( 90e868...6ce9ed )
by Carlos
03:09
created
src/Sintegra/Services/Portais/SP/Search.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 						array_get($this->configurations, 'selectors.paramBot')
114 114
 					);
115 115
 
116
-		if(!$paramBot->count()){
116
+		if (!$paramBot->count()) {
117 117
 			throw new ImageNotFound("Impossible to crawler parambot from response", 1);
118 118
 		}
119 119
 
@@ -135,13 +135,13 @@  discard block
 block discarded – undo
135 135
 						CURLOPT_HTTPHEADER => array(
136 136
 							"Pragma: no-cache",
137 137
 							"Origin: " . $this->configurations['base'],
138
-							"Host: ". array_get($this->configurations, 'headers.Host'),
138
+							"Host: " . array_get($this->configurations, 'headers.Host'),
139 139
 							"User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0",
140 140
 							"Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
141 141
 							"Accept-Language: pt-BR,pt;q=0.8,en-US;q=0.5,en;q=0.3",
142 142
 							"Accept-Encoding: gzip, deflate",
143 143
 							"Referer: " . $this->configurations['captcha'],
144
-							"Cookie: flag=1; ". $this->cookie,
144
+							"Cookie: flag=1; " . $this->cookie,
145 145
 							"Connection: keep-alive"
146 146
 						),
147 147
 						CURLOPT_RETURNTRANSFER => true,
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
 		$this->captcha = $curl->response();
161 161
 
162 162
 		// é uma imagem o retorno?
163
-		if(@imagecreatefromstring($this->captcha) == false)
163
+		if (@imagecreatefromstring($this->captcha) == false)
164 164
 		{
165 165
 			throw new NoCaptchaResponse('Não foi possível capturar o captcha');
166 166
 		}
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
 					"Accept-Language: pt-BR,pt;q=0.8,en-US;q=0.6,en;q=0.4,es;q=0.2",
240 240
 					"Accept-Encoding: gzip, deflate",
241 241
 					"Referer: http://pfeserv1.fazenda.sp.gov.br/sintegrapfe/consultaSintegraServlet",
242
-					"Cookie: flag=1; ". $cookie,
242
+					"Cookie: flag=1; " . $cookie,
243 243
 					"Connection: keep-alive"
244 244
 				),
245 245
 				CURLOPT_RETURNTRANSFER  => 1,
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
 		// vamos capturar retorno, que deverá ser o HTML para scrapping
259 259
 		$html = $curl->response();
260 260
 
261
-		if(empty($html)) {
261
+		if (empty($html)) {
262 262
 			throw new NoServiceResponse('No response from service', 99);
263 263
 		}
264 264
 
Please login to merge, or discard this patch.
src/Laravel/ServicesProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
    */
35 35
   protected function registerReceitaFederal()
36 36
   {
37
-  	$this->app->bind('ReceitaFederal', function(){
37
+  	$this->app->bind('ReceitaFederal', function() {
38 38
   		return new RFSearch;
39 39
   	});
40 40
   }
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
    */
47 47
   protected function registerSintegra()
48 48
   {
49
-  	$this->app->bind('Sintegra', function(){
49
+  	$this->app->bind('Sintegra', function() {
50 50
   		return new Search;
51 51
   	});
52 52
   }
Please login to merge, or discard this patch.