Skip to content

Commit

Permalink
#1417 - Swap include order of services.php and router.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeckerson committed Jan 19, 2020
1 parent 0022167 commit 128abaf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions templates/project/simple/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 128abaf

Please sign in to comment.