Completed
Push — master ( 77a4db...ab4058 )
by
unknown
32s
created
src/Container.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,10 +31,10 @@
 block discarded – undo
31 31
     public static function create(): self
32 32
     {
33 33
         return new self([
34
-            Parser::class => static function (self $container): Parser {
34
+            Parser::class => static function(self $container): Parser {
35 35
                 return (new ParserFactory())->createForHostVersion();
36 36
             },
37
-            FileParser::class => static function (self $container): FileParser {
37
+            FileParser::class => static function(self $container): FileParser {
38 38
                 return new FileParser($container->getParser());
39 39
             },
40 40
         ]);
Please login to merge, or discard this patch.