Completed
Push — master ( ccd642...ef610a )
by Gabor
02:56
created
src/WebHemi/Adapter/Data/InMemory/InMemoryAdapter.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
             }
198 198
         }
199 199
 
200
-        return (bool)$match;
200
+        return (bool) $match;
201 201
     }
202 202
 
203 203
     /**
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
     private function checkWildcardMatch($data, $subject)
210 210
     {
211 211
         $subject = str_replace('%', '.*', $subject);
212
-        return preg_match('/^' . $subject . '$/', $data);
212
+        return preg_match('/^'.$subject.'$/', $data);
213 213
     }
214 214
 
215 215
     /**
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
      */
221 221
     private function checkInArrayMatch($data, $subject)
222 222
     {
223
-        return in_array($data, (array)$subject);
223
+        return in_array($data, (array) $subject);
224 224
     }
225 225
 
226 226
     /**
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
             if (is_numeric($maxKey)) {
316 316
                 $identifier = (int) $maxKey + 1;
317 317
             } else {
318
-                $identifier = $maxKey . '_1';
318
+                $identifier = $maxKey.'_1';
319 319
             }
320 320
         }
321 321
 
Please login to merge, or discard this patch.