@@ -41,7 +41,7 @@ discard block |
||
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 |
||
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 |