@@ -18,7 +18,7 @@ |
||
18 | 18 | use Rector\Set\ValueObject\LevelSetList; |
19 | 19 | use Rector\Set\ValueObject\SetList; |
20 | 20 | |
21 | -return static function (RectorConfig $rectorConfig): void { |
|
21 | +return static function(RectorConfig $rectorConfig): void { |
|
22 | 22 | $rectorConfig->paths([ |
23 | 23 | __DIR__.'/src', |
24 | 24 | __DIR__.'/tests', |
@@ -75,19 +75,19 @@ |
||
75 | 75 | |
76 | 76 | protected function handleBegin(): callable |
77 | 77 | { |
78 | - return static function (Message $message) { |
|
78 | + return static function(Message $message) { |
|
79 | 79 | }; |
80 | 80 | } |
81 | 81 | |
82 | 82 | protected function handleBatch(): callable |
83 | 83 | { |
84 | - return static function (Message $message) { |
|
84 | + return static function(Message $message) { |
|
85 | 85 | }; |
86 | 86 | } |
87 | 87 | |
88 | 88 | protected function handleEnd(): callable |
89 | 89 | { |
90 | - return static function (Message $message, array $errors) { |
|
90 | + return static function(Message $message, array $errors) { |
|
91 | 91 | }; |
92 | 92 | } |
93 | 93 |