Passed
Push — main ( d40f42...a0cbf5 )
by Breno
02:18
created
src/Environment.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@
 block discarded – undo
8 8
     public static function production(): array
9 9
     {
10 10
         return [
11
-           'urlAuthorize'            => 'https://sso.staging.acesso.gov.br/authorize',
12
-           'urlAccessToken'          => 'https://sso.staging.acesso.gov.br/token',
13
-           'urlResourceOwnerDetails' => 'https://sso.staging.acesso.gov.br/userinfo',
11
+            'urlAuthorize'            => 'https://sso.staging.acesso.gov.br/authorize',
12
+            'urlAccessToken'          => 'https://sso.staging.acesso.gov.br/token',
13
+            'urlResourceOwnerDetails' => 'https://sso.staging.acesso.gov.br/userinfo',
14 14
         ];
15 15
     }
16 16
 
Please login to merge, or discard this patch.
example/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 use Psr\Http\Message\ResponseInterface;
14 14
 use Psr\Http\Message\ServerRequestInterface;
15 15
 
16
-require __DIR__ . '/../vendor/autoload.php';
16
+require __DIR__.'/../vendor/autoload.php';
17 17
 
18 18
 /**
19 19
  * ----------------------------------------------------------------------
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
  *     - Os parâmetros abaixos são sigilosos, evite comitar os valores no seu repositório
66 66
  *     - Prefira obter os valores abaixo usando getenv(...) ao invés de fixar no código
67 67
  */
68
-$govBr =  new GovBr([
68
+$govBr = new GovBr([
69 69
     // Client ID fornecido pelo GovBr
70 70
     'clientId'      => 'XXXXXXXX',
71 71
     // Senha fornecida pelo provedor GovBr
Please login to merge, or discard this patch.