From 720fa310e69a555d309846e32ae8388f3986d834 Mon Sep 17 00:00:00 2001 From: Nathanael Esayeas Date: Wed, 17 Jul 2024 13:59:24 -0500 Subject: [PATCH] Add ServiceProvider.php Signed-off-by: Nathanael Esayeas --- src/Service/ServiceProvider.php | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/Service/ServiceProvider.php diff --git a/src/Service/ServiceProvider.php b/src/Service/ServiceProvider.php new file mode 100644 index 0000000..df9c4b4 --- /dev/null +++ b/src/Service/ServiceProvider.php @@ -0,0 +1,32 @@ +alias(Workspace::class, WorkspaceInterface::class); + $container->factory(WorkspaceInterface::class, WorkspaceFactory::class); + $container->factory(Application::class, ApplicationFactory::class); + $container->factory(Configuration::class, ConfigurationFactory::class); + } +}