From 47de12c0b979407eb90e6aae88761f8298ec64a5 Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Mon, 16 Dec 2019 21:22:31 -0700 Subject: [PATCH] Reduced imports in index.php --- index.php | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/index.php b/index.php index 8a1206f..8fb0728 100644 --- a/index.php +++ b/index.php @@ -1,8 +1,6 @@ set('app.root', __DIR__); // Configure the application componentes -$container->call(ConfigComposer::class); -$container->call(FinderComposer::class); -$container->call(ViewComposer::class); +$container->call(Bootstrap\ConfigComposer::class); +$container->call(Bootstrap\FinderComposer::class); +$container->call(Bootstrap\ViewComposer::class); // Create the application $app = Bridge::create($container);