@@ -5,10 +5,10 @@ |
||
5 | 5 | |
6 | 6 | class WebTestCase extends BaseWebTestCase |
7 | 7 | { |
8 | - public function createApplication() |
|
9 | - { |
|
10 | - $app = require $_SERVER['APP_DIR'] . '/src/app.php'; |
|
8 | + public function createApplication() |
|
9 | + { |
|
10 | + $app = require $_SERVER['APP_DIR'] . '/src/app.php'; |
|
11 | 11 | |
12 | - return $app; |
|
13 | - } |
|
12 | + return $app; |
|
13 | + } |
|
14 | 14 | } |
15 | 15 | \ No newline at end of file |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | |
42 | 42 | // Register Monolog service provider for local logging |
43 | 43 | $app->register(new MonologServiceProvider(), array( |
44 | - 'monolog.logfile' => __DIR__.LOG_PATH, |
|
44 | + 'monolog.logfile' => __DIR__.LOG_PATH, |
|
45 | 45 | 'monolog.name' => APP_NAME, |
46 | 46 | 'monolog.level' => LOG_LEVEL |
47 | 47 | )); |
@@ -65,5 +65,5 @@ discard block |
||
65 | 65 | |
66 | 66 | // Load routes |
67 | 67 | foreach(glob(__DIR__ . "/src/Kineo/Route/*.php") as $filename) { |
68 | - require_once $filename; |
|
68 | + require_once $filename; |
|
69 | 69 | } |