@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | */ |
39 | 39 | public function getCharacters() |
40 | 40 | { |
41 | - return $this->filterWith(function (CodepointAssigned $assigned) { |
|
41 | + return $this->filterWith(function(CodepointAssigned $assigned) { |
|
42 | 42 | return $assigned instanceof Character; |
43 | 43 | }); |
44 | 44 | } |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | */ |
49 | 49 | public function getNonCharacters() |
50 | 50 | { |
51 | - return $this->filterWith(function (CodepointAssigned $assigned) { |
|
51 | + return $this->filterWith(function(CodepointAssigned $assigned) { |
|
52 | 52 | return $assigned instanceof NonCharacter; |
53 | 53 | }); |
54 | 54 | } |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | */ |
59 | 59 | public function getSurrogates() |
60 | 60 | { |
61 | - return $this->filterWith(function (CodepointAssigned $assigned) { |
|
61 | + return $this->filterWith(function(CodepointAssigned $assigned) { |
|
62 | 62 | return $assigned instanceof Surrogate; |
63 | 63 | }); |
64 | 64 | } |