We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e9f2ca commit b200505Copy full SHA for b200505
src/Page/src/ConfigProvider.php
@@ -11,6 +11,8 @@
11
use Light\Page\Handler\WhoWeAreHandler;
12
use Light\Page\Service\PageService;
13
use Light\Page\Service\PageServiceInterface;
14
+use Light\App\RoutesDelegator as AppRoutesDelegator;
15
+use Light\Page\RoutesDelegator as PageRoutesDelegator;
16
use Mezzio\Application;
17
18
class ConfigProvider
@@ -28,8 +30,8 @@ public function getDependencies(): array
28
30
return [
29
31
'delegators' => [
32
Application::class => [
- \Light\App\RoutesDelegator::class,
- RoutesDelegator::class,
33
+ AppRoutesDelegator::class,
34
+ PageRoutesDelegator::class,
35
],
36
37
'factories' => [
0 commit comments