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 ( 1e82c1...dc89a8 )
by Carlos
03:04
created
src/Sintegra/Search.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@
 block discarded – undo
24 24
 
25 25
 	/**
26 26
 	 * [service description]
27
+	 * @param string $service
27 28
 	 * @return [type] [description]
28 29
 	 */
29 30
 	public function service($service)
Please login to merge, or discard this patch.
src/Helpers/Sintegra.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,9 +29,9 @@
 block discarded – undo
29 29
 		$search->request();
30 30
 
31 31
 		return  [
32
-            'cookie' => $search->cookie(),
33
-            'image'  => $search->captcha(),
34
-            'paramBot' => $search->params()['parambot']
35
-        ];
32
+			'cookie' => $search->cookie(),
33
+			'image'  => $search->captcha(),
34
+			'paramBot' => $search->params()['parambot']
35
+		];
36 36
 	}
37 37
 }
38 38
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 	 * @param  array $params   
10 10
 	 * @return array
11 11
 	 */
12
-	function sintegra($portal = 'SP', $document = false, $cookie = false, $captcha = false, $params = false )
12
+	function sintegra($portal = 'SP', $document = false, $cookie = false, $captcha = false, $params = false)
13 13
 	{	
14 14
 		/**
15 15
 		 * Inicia a classe
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 		/**
21 21
 		 * @var array data
22 22
 		 */
23
-		if($document && $cookie && $captcha && $params) {
23
+		if ($document && $cookie && $captcha && $params) {
24 24
 			$crawler = $search->data($document, $cookie, $captcha, $params);
25 25
 
26 26
 			return $crawler->scraping();
Please login to merge, or discard this patch.
src/Helpers/ReceitaFederal.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@
 block discarded – undo
29 29
 		$search->request();
30 30
 
31 31
 		return  [
32
-            'cookie' => $search->cookie(),
33
-            'image'  => $search->captcha()
34
-        ];
32
+			'cookie' => $search->cookie(),
33
+			'image'  => $search->captcha()
34
+		];
35 35
 	}
36 36
 }
37 37
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 		$search = (new \zServices\ReceitaFederal\Search)->service();
19 19
 
20 20
 		// Esta pesquisando por um documento?
21
-		if($document && $cookie && $captcha) {
21
+		if ($document && $cookie && $captcha) {
22 22
 			$crawler = $search->data($document, $cookie, $captcha, $params);
23 23
 
24 24
 			return $crawler->scraping();
Please login to merge, or discard this patch.
src/ReceitaFederal/Services/Portais/AN/Service.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -112,6 +112,9 @@
 block discarded – undo
112 112
 
113 113
 	/**
114 114
 	 * Informações da entidade no serviço
115
+	 * @param integer $document
116
+	 * @param string $cookie
117
+	 * @param string $captcha
115 118
 	 * @return array
116 119
 	 */
117 120
 	public function data($document, $cookie, $captcha, array $params = [])
Please login to merge, or discard this patch.