We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f99873 commit b0f292aCopy full SHA for b0f292a
routes.php
@@ -2,9 +2,9 @@
2
3
require_once __DIR__ . '/Library/Router.php';
4
5
-foreach(glob(__DIR__ . '/Controller/*.php') as $file)
+foreach (glob(__DIR__ . '/Controller/*.php') as $file)
6
{
7
- if($file === __DIR__ . '/Controller/BaseController.php') continue;
+ if ($file === __DIR__ . '/Controller/BaseController.php') continue;
8
require_once $file;
9
}
10
@@ -13,4 +13,4 @@
13
ini_set('display_errors', Config::getEnvProperties('display_error'));
14
15
/** @var object $route Router class instance */
16
-$route = new Router();
+$route = new Router();
0 commit comments