Passed
Push — main ( a00e1e...c2dc62 )
by Peter
03:59
created
src/Credentials.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         protected ?string $clientId = null,
42 42
         protected ?string $clientSecret = null,
43 43
     ) {
44
-        if (! empty($credentials)) {
44
+        if (!empty($credentials)) {
45 45
             $this->parseCredentialsArray($credentials);
46 46
         }
47 47
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
         }
116 116
 
117 117
         if ($options->authType === self::AUTH_TYPE_BASIC) {
118
-            if (! $this->clientId || ! $this->clientSecret) {
118
+            if (!$this->clientId || !$this->clientSecret) {
119 119
                 throw new InvalidArgumentException('Basic auth requires client id and client secret. Check documentation/readme.');
120 120
             }
121 121
 
Please login to merge, or discard this patch.