Skip to content

Commit

Permalink
fix code style errors
Browse files Browse the repository at this point in the history
  • Loading branch information
l0gicgate committed Aug 20, 2019
1 parent 8e0f835 commit a2d911a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Slim/Factory/AppFactory.php
Expand Up @@ -124,7 +124,14 @@ public static function createFromContainer(ContainerInterface $container): App
? $container->get(MiddlewareDispatcherInterface::class)
: null;

return new App($responseFactory, $container, $callableResolver, $routeCollector, $routeResolver, $middlewareDispatcher);
return new App(
$responseFactory,
$container,
$callableResolver,
$routeCollector,
$routeResolver,
$middlewareDispatcher
);
}

/**
Expand Down

0 comments on commit a2d911a

Please sign in to comment.