From 128abafe2431c5a351980c31d2969ba35103d904 Mon Sep 17 00:00:00 2001 From: Anton Vasiliev Date: Sun, 19 Jan 2020 17:43:14 +0000 Subject: [PATCH] #1417 - Swap include order of services.php and router.php --- templates/project/simple/index.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/project/simple/index.php b/templates/project/simple/index.php index 654d76da3..6a9b99d27 100644 --- a/templates/project/simple/index.php +++ b/templates/project/simple/index.php @@ -16,14 +16,14 @@ $di = new FactoryDefault(); /** - * Handle routes + * Read services */ - include APP_PATH . '/config/router.php'; + include APP_PATH . '/config/services.php'; /** - * Read services + * Handle routes */ - include APP_PATH . '/config/services.php'; + include APP_PATH . '/config/router.php'; /** * Get config service for use in inline setup below