Skip to content

Commit b0f292a

Browse files
authored
Update routes.php
1 parent 8f99873 commit b0f292a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

routes.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
require_once __DIR__ . '/Library/Router.php';
44

5-
foreach(glob(__DIR__ . '/Controller/*.php') as $file)
5+
foreach (glob(__DIR__ . '/Controller/*.php') as $file)
66
{
7-
if($file === __DIR__ . '/Controller/BaseController.php') continue;
7+
if ($file === __DIR__ . '/Controller/BaseController.php') continue;
88
require_once $file;
99
}
1010

@@ -13,4 +13,4 @@
1313
ini_set('display_errors', Config::getEnvProperties('display_error'));
1414

1515
/** @var object $route Router class instance */
16-
$route = new Router();
16+
$route = new Router();

0 commit comments

Comments
 (0)