From 02607f2d0a0b378099cba0f06d037cb1049ded63 Mon Sep 17 00:00:00 2001 From: Corey Taylor Date: Tue, 21 Oct 2025 00:17:41 -0500 Subject: [PATCH] Add TableContainer example --- src/Application.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Application.php b/src/Application.php index f5714eade..8428a535a 100644 --- a/src/Application.php +++ b/src/Application.php @@ -99,5 +99,7 @@ public function middleware(MiddlewareQueue $middlewareQueue): MiddlewareQueue */ public function services(ContainerInterface $container): void { + // Allow your Tables to be dependency injected + //$container->delegate(new \Cake\ORM\Locator\TableContainer()); } }