Completed
Pull Request — master (#1)
by Gilmar
45:47 queued 20:39
created
src/Client/Client.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -31,15 +31,15 @@
 block discarded – undo
31 31
 
32 32
     protected function renderAuthorization()
33 33
     {
34
-        $list = [];
34
+        $list = [ ];
35 35
 
36
-        foreach (['client_id', 'access_token'] as $key) {
36
+        foreach ([ 'client_id', 'access_token' ] as $key) {
37 37
             $value = $this->getOptions()->get($key);
38 38
             if (empty($value)) {
39
-                throw new \InvalidArgumentException('['.$key.'] ausente!');
39
+                throw new \InvalidArgumentException('[' . $key . '] ausente!');
40 40
             }
41 41
 
42
-            $list[] = $key.':'.$value;
42
+            $list[ ] = $key . ':' . $value;
43 43
         }
44 44
 
45 45
         return $list;
Please login to merge, or discard this patch.