@@ -6,10 +6,8 @@ |
||
6 | 6 | require_once __DIR__ . '/../vendor/autoload.php'; |
7 | 7 | |
8 | 8 | use Silex\Application; |
9 | -use Symfony\Component\HttpFoundation\Request; |
|
10 | 9 | use Symfony\Component\HttpFoundation\Response; |
11 | 10 | use Silex\Provider\UrlGeneratorServiceProvider; |
12 | -use Silex\Provider\SessionServiceProvider; |
|
13 | 11 | use Silex\Provider\ServiceControllerServiceProvider; |
14 | 12 | use Silex\Provider\MonologServiceProvider; |
15 | 13 |
@@ -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 | } |
@@ -1,5 +1,4 @@ |
||
1 | 1 | <?php |
2 | -use Silex\Application; |
|
3 | 2 | use Kineo\Controller\VoteController; |
4 | 3 | |
5 | 4 | $app['vote.controller'] = $app->share(function() use ($app) { |
@@ -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 |
@@ -1,5 +1,4 @@ |
||
1 | 1 | <?php |
2 | -use Silex\Application; |
|
3 | 2 | use Kineo\Controller\VoteController; |
4 | 3 | |
5 | 4 | $app['vote.controller'] = $app->share(function() use ($app) { |
@@ -1,5 +1,4 @@ |
||
1 | 1 | <?php |
2 | -use Silex\Application; |
|
3 | 2 | use Kineo\Controller\VoteController; |
4 | 3 | |
5 | 4 | $app['vote.controller'] = $app->share(function() use ($app) { |
@@ -1,5 +1,4 @@ |
||
1 | 1 | <?php |
2 | -use Silex\Application; |
|
3 | 2 | use Kineo\Controller\VoteController; |
4 | 3 | |
5 | 4 | $app['vote.controller'] = $app->share(function() use ($app) { |