From 9a64d1dd5067afddeec83e830caa72f0f9d50ed3 Mon Sep 17 00:00:00 2001 From: Yisroel Baum Date: Sun, 12 Apr 2026 22:06:15 +0300 Subject: [PATCH] bind text repo to json impl in container --- bootstrap/container.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/container.php b/bootstrap/container.php index 3a35c97..3ec249c 100644 --- a/bootstrap/container.php +++ b/bootstrap/container.php @@ -3,7 +3,7 @@ use DI\Container; $container = new Container([ - + \App\Text\TextRepository::class => \App\Text\JsonTextRepository::class, ]); return $container;