Test Failed
Branch master (1060f7)
by Andrey
08:04
created
Category
src/AuthClient.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         );
99 99
 
100 100
         $responseData = json_decode($response->getBody()->getContents(), true);
101
-        if (! array_key_exists('decoded', $responseData)) {
101
+        if (!array_key_exists('decoded', $responseData)) {
102 102
             throw new DecodedSectionNotFound('Decoded section not found');
103 103
         }
104 104
 
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
         );
216 216
 
217 217
         $responseData = json_decode($response->getBody()->getContents(), true);
218
-        if (! array_key_exists('decoded', $responseData)) {
218
+        if (!array_key_exists('decoded', $responseData)) {
219 219
             throw new DecodedSectionNotFound('Decoded section not found.');
220 220
         }
221 221
 
Please login to merge, or discard this patch.
src/Traits/ValidateParams.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     protected function validateParams(array $params, array $requiredKeys)
17 17
     {
18 18
         foreach ($requiredKeys as $key) {
19
-            if (! isset($params[$key])) {
19
+            if (!isset($params[$key])) {
20 20
                 throw new InvalidArgumentException(sprintf('Required key: %s is not specified', $key));
21 21
             }
22 22
         }
Please login to merge, or discard this patch.
src/Abstracts/RegistrationResult.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
             throw new InvalidArgumentException('Email value can not be empty');
85 85
         }
86 86
 
87
-        if (! filter_var($email, FILTER_VALIDATE_EMAIL)) {
87
+        if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
88 88
             throw new InvalidArgumentException('Invalid Email address');
89 89
         }
90 90
 
Please login to merge, or discard this patch.