Passed
Pull Request — master (#20)
by Aleksei
03:14
created
src/Definition/Comparator/FieldComparator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
     private function compareProperties(): bool
57 57
     {
58
-        $tuples = array_map(static function (Field $field): array {
58
+        $tuples = array_map(static function(Field $field): array {
59 59
             return [$field->getType(), $field->isPrimary()];
60 60
         }, $this->fields);
61 61
 
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     private function compareOptions(): bool
73 73
     {
74 74
         // Collect fields options
75
-        $optionsSet = array_map(static function (Field $field): array {
75
+        $optionsSet = array_map(static function(Field $field): array {
76 76
             return iterator_to_array($field->getOptions());
77 77
         }, $this->fields);
78 78
 
Please login to merge, or discard this patch.