Passed
Branch master (a16647)
by Jos
02:40
created
Category
src/EnumCollection.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,21 +8,21 @@
 block discarded – undo
8 8
 {
9 9
     public function identifiers()
10 10
     {
11
-        return $this->map(function (Enum $enum) {
11
+        return $this->map(function(Enum $enum) {
12 12
             return $enum->identifier();
13 13
         });
14 14
     }
15 15
 
16 16
     public function byIdentifier($identifier)
17 17
     {
18
-        return $this->first(function (Enum $enum) use ($identifier) {
18
+        return $this->first(function(Enum $enum) use ($identifier) {
19 19
             return $enum->identifier() == $identifier;
20 20
         });
21 21
     }
22 22
 
23 23
     public function hasIdentifier($identifier)
24 24
     {
25
-        return $this->contains(function (Enum $enum) use ($identifier) {
25
+        return $this->contains(function(Enum $enum) use ($identifier) {
26 26
             return $enum->identifier() == $identifier;
27 27
         });
28 28
     }
Please login to merge, or discard this patch.