@@ -27,12 +27,12 @@ |
||
27 | 27 | } |
28 | 28 | |
29 | 29 | //[INFO]index.php,install.phpをEC-CUBEルート直下に移動させる場合は、コメントアウトしている行に置き換える |
30 | -require __DIR__ . '/../autoload.php'; |
|
30 | +require __DIR__.'/../autoload.php'; |
|
31 | 31 | //require __DIR__ . '/autoload.php'; |
32 | 32 | |
33 | 33 | $app = new Eccube\InstallApplication(); |
34 | 34 | $app['debug'] = true; |
35 | -$app->before(function (\Symfony\Component\HttpFoundation\Request $request, \Silex\Application $app) { |
|
35 | +$app->before(function(\Symfony\Component\HttpFoundation\Request $request, \Silex\Application $app) { |
|
36 | 36 | if (!$request->getSession()->isStarted()) { |
37 | 37 | $request->getSession()->start(); |
38 | 38 | } |
@@ -69,7 +69,7 @@ |
||
69 | 69 | |
70 | 70 | // load config dev |
71 | 71 | $conf = $app['config']; |
72 | -$app['config'] = $app->share(function () use ($conf) { |
|
72 | +$app['config'] = $app->share(function() use ($conf) { |
|
73 | 73 | $confarray = array(); |
74 | 74 | $config_dev_file = __DIR__.'/../app/config/eccube/config_dev.yml'; |
75 | 75 | if (file_exists($config_dev_file)) { |