Completed
Push — master ( d27e1e...d6d70b )
by Hannes
01:43
created
src/ArrayValidator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace hanneskod\clean;
6 6
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
         if (!$this->ignoreUnknown && $diff = array_diff_key($data, $this->validators)) {
59 59
             foreach (array_keys($diff) as $unknown) {
60
-                $errors[(string)$unknown] = "Unknown input item $unknown";
60
+                $errors[(string) $unknown] = "Unknown input item $unknown";
61 61
             }
62 62
         }
63 63
 
Please login to merge, or discard this patch.