Skip to content

Commit ad74ba0

Browse files
authored
Merge pull request #73 from iGroovyboy/static_call
Self to Static to allow call of the createControllerInvoker() from a child class
2 parents c118174 + f22d7c3 commit ad74ba0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Bridge.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public static function create(ContainerInterface $container = null): App
3333

3434
$container->set(App::class, $app);
3535

36-
$controllerInvoker = self::createControllerInvoker($container);
36+
$controllerInvoker = static::createControllerInvoker($container);
3737
$app->getRouteCollector()->setDefaultInvocationStrategy($controllerInvoker);
3838

3939
return $app;

0 commit comments

Comments
 (0)