Test Setup Failed
Branch master (fb35fd)
by John
09:21
created
Category
src/Airtable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * @param array<mixed> $config
19 19
      */
20
-    public function __construct(array $config = [])
20
+    public function __construct(array $config = [ ])
21 21
     {
22 22
         $this->config = $config;
23 23
     }
Please login to merge, or discard this patch.
src/ApiClient.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public function __construct(HttpInterface $service, array $config)
58 58
     {
59
-        if (!isset($config['apiKey'])) {
59
+        if (!isset($config[ 'apiKey' ])) {
60 60
             throw new MissingConfigException('Airtable API Key is missing from the Config');
61 61
         }
62 62
 
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         }
68 68
 
69 69
         $this->service = $service;
70
-        $this->service->addHeaders(['Authorization' => 'Bearer ' . $this->apiKey]);
70
+        $this->service->addHeaders([ 'Authorization' => 'Bearer ' . $this->apiKey ]);
71 71
     }
72 72
 
73 73
     /**
Please login to merge, or discard this patch.