8000 Removed dotkernel/dot-controller and replaced with handlers by MarioRadu · Pull Request #33 · dotkernel/light · GitHub
[go: up one dir, main page]

Skip to content
Prev Previous commit
Next Next commit
refactored namespaces as aliases
Signed-off-by: MarioRadu <magda_marior@yahoo.com>
  • Loading branch information
MarioRadu committed Feb 13, 2025
commit 00f18464376c988dbb383ad59a70094675f32f58
6 changes: 4 additions & 2 deletions src/Page/src/ConfigProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
use Light\Page\Handler\WhoWeAreHandler;
use Light\Page\Service\PageService;
use Light\Page\Service\PageServiceInterface;
use Light\App\RoutesDelegator as AppRoutesDelegator;
use Light\Page\RoutesDelegator as PageRoutesDelegator;
use Mezzio\Application;

class ConfigProvider
Expand All @@ -28,8 +30,8 @@ public function getDependencies(): array
return [
'delegators' => [
Application::class => [
\Light\App\RoutesDelegator::class,
RoutesDelegator::class,
AppRoutesDelegator::class,
PageRoutesDelegator::class,
],
],
'factories' => [
Expand Down
0