@@ -28,7 +28,6 @@ |
||
28 | 28 | use Eccube\Entity\Master\DeviceType; |
29 | 29 | use Eccube\Util\Str; |
30 | 30 | use Symfony\Component\Filesystem\Filesystem; |
31 | -use Symfony\Component\Finder\Finder; |
|
32 | 31 | use Symfony\Component\Form\FormError; |
33 | 32 | use Symfony\Component\HttpFoundation\Request; |
34 | 33 | use Symfony\Component\HttpFoundation\Response; |
@@ -65,15 +65,15 @@ discard block |
||
65 | 65 | ->find($form['selected']->getData()); |
66 | 66 | |
67 | 67 | // path.ymlの再構築 |
68 | - $file = $app['config']['root_dir'] . '/app/config/eccube/path.yml'; |
|
68 | + $file = $app['config']['root_dir'].'/app/config/eccube/path.yml'; |
|
69 | 69 | $config = Yaml::parse(file_get_contents($file)); |
70 | 70 | |
71 | 71 | $templateCode = $Template->getCode(); |
72 | 72 | $config['template_code'] = $templateCode; |
73 | - $config['template_realdir'] = $config['root_dir'] . '/app/template/' . $templateCode; |
|
74 | - $config['template_html_realdir'] = $config['public_path_realdir'] . '/template/' . $templateCode; |
|
75 | - $config['front_urlpath'] = $config['root_urlpath'] . '/template/' . $templateCode; |
|
76 | - $config['block_realdir'] =$config['template_realdir'] . '/Block'; |
|
73 | + $config['template_realdir'] = $config['root_dir'].'/app/template/'.$templateCode; |
|
74 | + $config['template_html_realdir'] = $config['public_path_realdir'].'/template/'.$templateCode; |
|
75 | + $config['front_urlpath'] = $config['root_urlpath'].'/template/'.$templateCode; |
|
76 | + $config['block_realdir'] = $config['template_realdir'].'/Block'; |
|
77 | 77 | |
78 | 78 | file_put_contents($file, Yaml::dump($config)); |
79 | 79 | |
@@ -108,19 +108,19 @@ discard block |
||
108 | 108 | // 該当テンプレートのディレクトリ |
109 | 109 | $config = $app['config']; |
110 | 110 | $templateCode = $Template->getCode(); |
111 | - $targetRealDir = $config['root_dir'] . '/app/template/' . $templateCode; |
|
112 | - $targetHtmlRealDir = $config['root_dir'] . '/html/template/' . $templateCode; |
|
111 | + $targetRealDir = $config['root_dir'].'/app/template/'.$templateCode; |
|
112 | + $targetHtmlRealDir = $config['root_dir'].'/html/template/'.$templateCode; |
|
113 | 113 | |
114 | 114 | // 一時ディレクトリ |
115 | 115 | $uniqId = sha1(Str::random(32)); |
116 | - $tmpDir = $config['template_temp_realdir'] . '/' . $uniqId; |
|
117 | - $appDir = $tmpDir . '/app'; |
|
118 | - $htmlDir = $tmpDir . '/html'; |
|
116 | + $tmpDir = $config['template_temp_realdir'].'/'.$uniqId; |
|
117 | + $appDir = $tmpDir.'/app'; |
|
118 | + $htmlDir = $tmpDir.'/html'; |
|
119 | 119 | |
120 | 120 | // ファイル名 |
121 | - $tarFile = $config['template_temp_realdir'] . '/' . $uniqId . '.tar'; |
|
122 | - $tarGzFile = $tarFile . '.gz'; |
|
123 | - $downloadFileName = $Template->getCode() . '.tar.gz'; |
|
121 | + $tarFile = $config['template_temp_realdir'].'/'.$uniqId.'.tar'; |
|
122 | + $tarGzFile = $tarFile.'.gz'; |
|
123 | + $downloadFileName = $Template->getCode().'.tar.gz'; |
|
124 | 124 | |
125 | 125 | // 該当テンプレートを一時ディレクトリへコピーする. |
126 | 126 | $fs = new Filesystem(); |
@@ -140,14 +140,14 @@ discard block |
||
140 | 140 | |
141 | 141 | // ダウンロード完了後にファイルを削除する. |
142 | 142 | // http://stackoverflow.com/questions/15238897/removing-file-after-delivering-response-with-silex-symfony |
143 | - $app->finish(function (Request $request, Response $response, \Silex\Application $app) use ( |
|
143 | + $app->finish(function(Request $request, Response $response, \Silex\Application $app) use ( |
|
144 | 144 | $tmpDir, |
145 | 145 | $tarFile, |
146 | 146 | $tarGzFile |
147 | 147 | ) { |
148 | - $app['monolog']->addDebug('remove temp file: ' . $tmpDir); |
|
149 | - $app['monolog']->addDebug('remove temp file: ' . $tarFile); |
|
150 | - $app['monolog']->addDebug('remove temp file: ' . $tarGzFile); |
|
148 | + $app['monolog']->addDebug('remove temp file: '.$tmpDir); |
|
149 | + $app['monolog']->addDebug('remove temp file: '.$tarFile); |
|
150 | + $app['monolog']->addDebug('remove temp file: '.$tarGzFile); |
|
151 | 151 | $fs = new Filesystem(); |
152 | 152 | $fs->remove($tmpDir); |
153 | 153 | $fs->remove($tarFile); |
@@ -188,8 +188,8 @@ discard block |
||
188 | 188 | // テンプレートディレクトリの削除 |
189 | 189 | $config = $app['config']; |
190 | 190 | $templateCode = $Template->getCode(); |
191 | - $targetRealDir = $config['root_dir'] . '/app/template/' . $templateCode; |
|
192 | - $targetHtmlRealDir = $config['root_dir'] . '/html/template/' . $templateCode; |
|
191 | + $targetRealDir = $config['root_dir'].'/app/template/'.$templateCode; |
|
192 | + $targetHtmlRealDir = $config['root_dir'].'/html/template/'.$templateCode; |
|
193 | 193 | |
194 | 194 | $fs = new Filesystem(); |
195 | 195 | $fs->remove($targetRealDir); |
@@ -232,18 +232,18 @@ discard block |
||
232 | 232 | // 該当テンプレートのディレクトリ |
233 | 233 | $config = $app['config']; |
234 | 234 | $templateCode = $Template->getCode(); |
235 | - $targetRealDir = $config['root_dir'] . '/app/template/' . $templateCode; |
|
236 | - $targetHtmlRealDir = $config['root_dir'] . '/html/template/' . $templateCode; |
|
235 | + $targetRealDir = $config['root_dir'].'/app/template/'.$templateCode; |
|
236 | + $targetHtmlRealDir = $config['root_dir'].'/html/template/'.$templateCode; |
|
237 | 237 | |
238 | 238 | // 一時ディレクトリ |
239 | 239 | $uniqId = sha1(Str::random(32)); |
240 | - $tmpDir = $config['template_temp_realdir'] . '/' . $uniqId; |
|
241 | - $appDir = $tmpDir . '/app'; |
|
242 | - $htmlDir = $tmpDir . '/html'; |
|
240 | + $tmpDir = $config['template_temp_realdir'].'/'.$uniqId; |
|
241 | + $appDir = $tmpDir.'/app'; |
|
242 | + $htmlDir = $tmpDir.'/html'; |
|
243 | 243 | |
244 | 244 | $formFile = $form['file']->getData(); |
245 | 245 | // ファイル名 |
246 | - $archive = $templateCode . '.' . $formFile->getClientOriginalExtension(); |
|
246 | + $archive = $templateCode.'.'.$formFile->getClientOriginalExtension(); |
|
247 | 247 | |
248 | 248 | // ファイルを一時ディレクトリへ移動. |
249 | 249 | $formFile->move($tmpDir, $archive); |
@@ -252,11 +252,11 @@ discard block |
||
252 | 252 | try { |
253 | 253 | if ($formFile->getClientOriginalExtension() == 'zip') { |
254 | 254 | $zip = new \ZipArchive(); |
255 | - $zip->open($tmpDir . '/' . $archive); |
|
255 | + $zip->open($tmpDir.'/'.$archive); |
|
256 | 256 | $zip->extractTo($tmpDir); |
257 | 257 | $zip->close(); |
258 | 258 | } else { |
259 | - $phar = new \PharData($tmpDir . '/' . $archive); |
|
259 | + $phar = new \PharData($tmpDir.'/'.$archive); |
|
260 | 260 | $phar->extractTo($tmpDir, null, true); |
261 | 261 | } |
262 | 262 | } catch (\Exception $e) { |
@@ -250,6 +250,9 @@ |
||
250 | 250 | } |
251 | 251 | |
252 | 252 | |
253 | + /** |
|
254 | + * @param InstallApplication $app |
|
255 | + */ |
|
253 | 256 | private function checkModules($app) |
254 | 257 | { |
255 | 258 | foreach ($this->required_modules as $module) { |
@@ -60,9 +60,9 @@ discard block |
||
60 | 60 | |
61 | 61 | public function __construct() |
62 | 62 | { |
63 | - $this->config_path = __DIR__ . '/../../../../app/config/eccube'; |
|
64 | - $this->dist_path = __DIR__ . '/../../Resource/config'; |
|
65 | - $this->cache_path = __DIR__ . '/../../../../app/cache'; |
|
63 | + $this->config_path = __DIR__.'/../../../../app/config/eccube'; |
|
64 | + $this->dist_path = __DIR__.'/../../Resource/config'; |
|
65 | + $this->cache_path = __DIR__.'/../../../../app/cache'; |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | private function isValid(Request $request, Form $form) |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | |
148 | 148 | if (empty($sessionData['shop_name'])) { |
149 | 149 | |
150 | - $config_file = $this->config_path . '/config.yml'; |
|
150 | + $config_file = $this->config_path.'/config.yml'; |
|
151 | 151 | $fs = new Filesystem(); |
152 | 152 | |
153 | 153 | if ($fs->exists($config_file)) { |
@@ -161,21 +161,21 @@ discard block |
||
161 | 161 | } |
162 | 162 | |
163 | 163 | // セキュリティの設定 |
164 | - $config_file = $this->config_path . '/path.yml'; |
|
164 | + $config_file = $this->config_path.'/path.yml'; |
|
165 | 165 | $config = Yaml::parse(file_get_contents($config_file)); |
166 | 166 | $sessionData['admin_dir'] = $config['admin_route']; |
167 | 167 | |
168 | - $config_file = $this->config_path . '/config.yml'; |
|
168 | + $config_file = $this->config_path.'/config.yml'; |
|
169 | 169 | $config = Yaml::parse(file_get_contents($config_file)); |
170 | 170 | |
171 | 171 | $allowHost = $config['admin_allow_host']; |
172 | 172 | if (count($allowHost) > 0) { |
173 | 173 | $sessionData['admin_allow_hosts'] = Str::convertLineFeed(implode("\n", $allowHost)); |
174 | 174 | } |
175 | - $sessionData['admin_force_ssl'] = (bool)$config['force_ssl']; |
|
175 | + $sessionData['admin_force_ssl'] = (bool) $config['force_ssl']; |
|
176 | 176 | |
177 | 177 | // メール設定 |
178 | - $config_file = $this->config_path . '/mail.yml'; |
|
178 | + $config_file = $this->config_path.'/mail.yml'; |
|
179 | 179 | $config = Yaml::parse(file_get_contents($config_file)); |
180 | 180 | $mail = $config['mail']; |
181 | 181 | $sessionData['mail_backend'] = $mail['transport']; |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | $host = $request->getSchemeAndHttpHost(); |
286 | 286 | $basePath = $request->getBasePath(); |
287 | 287 | $params = array( |
288 | - 'http_url' => $host . $basePath, |
|
288 | + 'http_url' => $host.$basePath, |
|
289 | 289 | 'shop_name' => $sessionData['shop_name'], |
290 | 290 | ); |
291 | 291 | |
@@ -306,13 +306,13 @@ discard block |
||
306 | 306 | // インストール完了 |
307 | 307 | public function complete(InstallApplication $app, Request $request) |
308 | 308 | { |
309 | - $config_file = $this->config_path . '/path.yml'; |
|
309 | + $config_file = $this->config_path.'/path.yml'; |
|
310 | 310 | $config = Yaml::parse(file_get_contents($config_file)); |
311 | 311 | |
312 | 312 | $host = $request->getSchemeAndHttpHost(); |
313 | 313 | $basePath = $request->getBasePath(); |
314 | 314 | |
315 | - $adminUrl = $host . $basePath . '/' . $config['admin_dir']; |
|
315 | + $adminUrl = $host.$basePath.'/'.$config['admin_dir']; |
|
316 | 316 | |
317 | 317 | return $app['twig']->render('complete.twig', array( |
318 | 318 | 'admin_url' => $adminUrl, |
@@ -332,17 +332,17 @@ discard block |
||
332 | 332 | { |
333 | 333 | foreach ($this->required_modules as $module) { |
334 | 334 | if (!extension_loaded($module)) { |
335 | - $app->addDanger('[必須] ' . $module . ' 拡張モジュールが有効になっていません。', 'install'); |
|
335 | + $app->addDanger('[必須] '.$module.' 拡張モジュールが有効になっていません。', 'install'); |
|
336 | 336 | } |
337 | 337 | } |
338 | 338 | |
339 | 339 | if (!extension_loaded('pdo_mysql') && !extension_loaded('pdo_pgsql')) { |
340 | - $app->addDanger('[必須] ' . 'pdo_pgsql又はpdo_mysql 拡張モジュールを有効にしてください。', 'install'); |
|
340 | + $app->addDanger('[必須] '.'pdo_pgsql又はpdo_mysql 拡張モジュールを有効にしてください。', 'install'); |
|
341 | 341 | } |
342 | 342 | |
343 | 343 | foreach ($this->recommended_module as $module) { |
344 | 344 | if (!extension_loaded($module)) { |
345 | - $app->addWarning('[推奨] ' . $module . ' 拡張モジュールが有効になっていません。', 'install'); |
|
345 | + $app->addWarning('[推奨] '.$module.' 拡張モジュールが有効になっていません。', 'install'); |
|
346 | 346 | } |
347 | 347 | } |
348 | 348 | |
@@ -360,7 +360,7 @@ discard block |
||
360 | 360 | if (!function_exists('apache_get_modules')) { |
361 | 361 | $app->addWarning('mod_rewrite が有効になっているか不明です。', 'install'); |
362 | 362 | } elseif (!in_array('mod_rewrite', apache_get_modules())) { |
363 | - $app->addDanger('[必須] ' . 'mod_rewriteを有効にしてください。', 'install'); |
|
363 | + $app->addDanger('[必須] '.'mod_rewriteを有効にしてください。', 'install'); |
|
364 | 364 | } |
365 | 365 | } elseif (isset($_SERVER['SERVER_SOFTWARE']) && strpos('Microsoft-IIS', $_SERVER['SERVER_SOFTWARE']) !== false) { |
366 | 366 | // iis |
@@ -371,7 +371,7 @@ discard block |
||
371 | 371 | |
372 | 372 | private function setPDO() |
373 | 373 | { |
374 | - $config_file = $this->config_path . '/database.yml'; |
|
374 | + $config_file = $this->config_path.'/database.yml'; |
|
375 | 375 | $config = Yaml::parse(file_get_contents($config_file)); |
376 | 376 | |
377 | 377 | try { |
@@ -406,7 +406,7 @@ discard block |
||
406 | 406 | */ |
407 | 407 | private function getEntityManager() |
408 | 408 | { |
409 | - $config_file = $this->config_path . '/database.yml'; |
|
409 | + $config_file = $this->config_path.'/database.yml'; |
|
410 | 410 | $database = Yaml::parse(file_get_contents($config_file)); |
411 | 411 | |
412 | 412 | $this->app->register(new \Silex\Provider\DoctrineServiceProvider(), array( |
@@ -414,15 +414,15 @@ discard block |
||
414 | 414 | )); |
415 | 415 | |
416 | 416 | $this->app->register(new \Dflydev\Silex\Provider\DoctrineOrm\DoctrineOrmServiceProvider(), array( |
417 | - 'orm.proxies_dir' => __DIR__ . '/../../app/cache/doctrine', |
|
417 | + 'orm.proxies_dir' => __DIR__.'/../../app/cache/doctrine', |
|
418 | 418 | 'orm.em.options' => array( |
419 | 419 | 'mappings' => array( |
420 | 420 | array( |
421 | 421 | 'type' => 'yml', |
422 | 422 | 'namespace' => 'Eccube\Entity', |
423 | 423 | 'path' => array( |
424 | - __DIR__ . '/../../Resource/doctrine', |
|
425 | - __DIR__ . '/../../Resource/doctrine/master', |
|
424 | + __DIR__.'/../../Resource/doctrine', |
|
425 | + __DIR__.'/../../Resource/doctrine/master', |
|
426 | 426 | ), |
427 | 427 | ), |
428 | 428 | |
@@ -450,11 +450,11 @@ discard block |
||
450 | 450 | { |
451 | 451 | $this->resetNatTimer(); |
452 | 452 | |
453 | - $config_file = $this->config_path . '/database.yml'; |
|
453 | + $config_file = $this->config_path.'/database.yml'; |
|
454 | 454 | $database = Yaml::parse(file_get_contents($config_file)); |
455 | 455 | $config['database'] = $database['database']; |
456 | 456 | |
457 | - $config_file = $this->config_path . '/config.yml'; |
|
457 | + $config_file = $this->config_path.'/config.yml'; |
|
458 | 458 | $baseConfig = Yaml::parse(file_get_contents($config_file)); |
459 | 459 | $config['config'] = $baseConfig; |
460 | 460 | |
@@ -510,11 +510,11 @@ discard block |
||
510 | 510 | { |
511 | 511 | $this->resetNatTimer(); |
512 | 512 | |
513 | - $config_file = $this->config_path . '/database.yml'; |
|
513 | + $config_file = $this->config_path.'/database.yml'; |
|
514 | 514 | $database = Yaml::parse(file_get_contents($config_file)); |
515 | 515 | $config['database'] = $database['database']; |
516 | 516 | |
517 | - $config_file = $this->config_path . '/config.yml'; |
|
517 | + $config_file = $this->config_path.'/config.yml'; |
|
518 | 518 | $baseConfig = Yaml::parse(file_get_contents($config_file)); |
519 | 519 | $config['config'] = $baseConfig; |
520 | 520 | |
@@ -579,7 +579,7 @@ discard block |
||
579 | 579 | $config = new Configuration($app['db']); |
580 | 580 | $config->setMigrationsNamespace('DoctrineMigrations'); |
581 | 581 | |
582 | - $migrationDir = __DIR__ . '/../../Resource/doctrine/migration'; |
|
582 | + $migrationDir = __DIR__.'/../../Resource/doctrine/migration'; |
|
583 | 583 | $config->setMigrationsDirectory($migrationDir); |
584 | 584 | $config->registerMigrationsFromDirectory($migrationDir); |
585 | 585 | |
@@ -610,7 +610,7 @@ discard block |
||
610 | 610 | private function getProtectedDirs() |
611 | 611 | { |
612 | 612 | $protectedDirs = array(); |
613 | - $base = __DIR__ . '/../../../..'; |
|
613 | + $base = __DIR__.'/../../../..'; |
|
614 | 614 | $dirs = array( |
615 | 615 | '/html', |
616 | 616 | '/app', |
@@ -623,7 +623,7 @@ discard block |
||
623 | 623 | ); |
624 | 624 | |
625 | 625 | foreach ($dirs as $dir) { |
626 | - if (!is_writable($base . $dir)) { |
|
626 | + if (!is_writable($base.$dir)) { |
|
627 | 627 | $protectedDirs[] = $dir; |
628 | 628 | } |
629 | 629 | } |
@@ -634,7 +634,7 @@ discard block |
||
634 | 634 | private function createConfigYamlFile($data, $auth = true) |
635 | 635 | { |
636 | 636 | $fs = new Filesystem(); |
637 | - $config_file = $this->config_path . '/config.yml'; |
|
637 | + $config_file = $this->config_path.'/config.yml'; |
|
638 | 638 | |
639 | 639 | if ($fs->exists($config_file)) { |
640 | 640 | $config = Yaml::parse(file_get_contents($config_file)); |
@@ -665,7 +665,7 @@ discard block |
||
665 | 665 | $content = str_replace( |
666 | 666 | $target, |
667 | 667 | $replace, |
668 | - file_get_contents($this->dist_path . '/config.yml.dist') |
|
668 | + file_get_contents($this->dist_path.'/config.yml.dist') |
|
669 | 669 | ); |
670 | 670 | $fs->dumpFile($config_file, $content); |
671 | 671 | |
@@ -679,7 +679,7 @@ discard block |
||
679 | 679 | |
680 | 680 | private function addInstallStatus() |
681 | 681 | { |
682 | - $config_file = $this->config_path . '/config.yml'; |
|
682 | + $config_file = $this->config_path.'/config.yml'; |
|
683 | 683 | $config = Yaml::parse(file_get_contents($config_file)); |
684 | 684 | $config['eccube_install'] = 1; |
685 | 685 | $yml = Yaml::dump($config); |
@@ -691,7 +691,7 @@ discard block |
||
691 | 691 | private function createDatabaseYamlFile($data) |
692 | 692 | { |
693 | 693 | $fs = new Filesystem(); |
694 | - $config_file = $this->config_path . '/database.yml'; |
|
694 | + $config_file = $this->config_path.'/database.yml'; |
|
695 | 695 | if ($fs->exists($config_file)) { |
696 | 696 | $fs->remove($config_file); |
697 | 697 | } |
@@ -725,7 +725,7 @@ discard block |
||
725 | 725 | $content = str_replace( |
726 | 726 | $target, |
727 | 727 | $replace, |
728 | - file_get_contents($this->dist_path . '/database.yml.dist') |
|
728 | + file_get_contents($this->dist_path.'/database.yml.dist') |
|
729 | 729 | ); |
730 | 730 | |
731 | 731 | } else { |
@@ -744,7 +744,7 @@ discard block |
||
744 | 744 | private function createMailYamlFile($data) |
745 | 745 | { |
746 | 746 | $fs = new Filesystem(); |
747 | - $config_file = $this->config_path . '/mail.yml'; |
|
747 | + $config_file = $this->config_path.'/mail.yml'; |
|
748 | 748 | if ($fs->exists($config_file)) { |
749 | 749 | $fs->remove($config_file); |
750 | 750 | } |
@@ -761,7 +761,7 @@ discard block |
||
761 | 761 | $content = str_replace( |
762 | 762 | $target, |
763 | 763 | $replace, |
764 | - file_get_contents($this->dist_path . '/mail.yml.dist') |
|
764 | + file_get_contents($this->dist_path.'/mail.yml.dist') |
|
765 | 765 | ); |
766 | 766 | $fs->dumpFile($config_file, $content); |
767 | 767 | |
@@ -771,7 +771,7 @@ discard block |
||
771 | 771 | private function createPathYamlFile($data, Request $request) |
772 | 772 | { |
773 | 773 | $fs = new Filesystem(); |
774 | - $config_file = $this->config_path . '/path.yml'; |
|
774 | + $config_file = $this->config_path.'/path.yml'; |
|
775 | 775 | if ($fs->exists($config_file)) { |
776 | 776 | $fs->remove($config_file); |
777 | 777 | } |
@@ -779,7 +779,7 @@ discard block |
||
779 | 779 | $ADMIN_ROUTE = $data['admin_dir']; |
780 | 780 | $TEMPLATE_CODE = 'default'; |
781 | 781 | $USER_DATA_ROUTE = 'user_data'; |
782 | - $ROOT_DIR = realpath(__DIR__ . '/../../../../'); |
|
782 | + $ROOT_DIR = realpath(__DIR__.'/../../../../'); |
|
783 | 783 | $ROOT_URLPATH = $request->getBasePath(); |
784 | 784 | |
785 | 785 | $target = array('${ADMIN_ROUTE}', '${TEMPLATE_CODE}', '${USER_DATA_ROUTE}', '${ROOT_DIR}', '${ROOT_URLPATH}'); |
@@ -789,7 +789,7 @@ discard block |
||
789 | 789 | $content = str_replace( |
790 | 790 | $target, |
791 | 791 | $replace, |
792 | - file_get_contents($this->dist_path . '/path.yml.dist') |
|
792 | + file_get_contents($this->dist_path.'/path.yml.dist') |
|
793 | 793 | ); |
794 | 794 | $fs->dumpFile($config_file, $content); |
795 | 795 | |
@@ -798,7 +798,7 @@ discard block |
||
798 | 798 | |
799 | 799 | private function sendAppData($params) |
800 | 800 | { |
801 | - $config_file = $this->config_path . '/database.yml'; |
|
801 | + $config_file = $this->config_path.'/database.yml'; |
|
802 | 802 | $db_config = Yaml::parse(file_get_contents($config_file)); |
803 | 803 | |
804 | 804 | $this->setPDO(); |
@@ -810,7 +810,7 @@ discard block |
||
810 | 810 | } |
811 | 811 | |
812 | 812 | if ($db_config['database']['driver'] === 'pdo_mysql') { |
813 | - $db_ver = 'MySQL:' . $version; |
|
813 | + $db_ver = 'MySQL:'.$version; |
|
814 | 814 | } else { |
815 | 815 | $db_ver = $version; |
816 | 816 | } |
@@ -828,7 +828,7 @@ discard block |
||
828 | 828 | |
829 | 829 | $header = array( |
830 | 830 | 'Content-Type: application/x-www-form-urlencoded', |
831 | - 'Content-Length: ' . strlen($data), |
|
831 | + 'Content-Length: '.strlen($data), |
|
832 | 832 | ); |
833 | 833 | $context = stream_context_create( |
834 | 834 | array( |
@@ -42,7 +42,7 @@ |
||
42 | 42 | |
43 | 43 | /** |
44 | 44 | * @param ObjectManager $om |
45 | - * @param stging $className |
|
45 | + * @param string $className |
|
46 | 46 | */ |
47 | 47 | public function __construct(ObjectManager $om, $className) |
48 | 48 | { |
@@ -36,6 +36,9 @@ |
||
36 | 36 | { |
37 | 37 | protected $app; |
38 | 38 | |
39 | + /** |
|
40 | + * @param \Silex\Application $app |
|
41 | + */ |
|
39 | 42 | public function __construct($app) |
40 | 43 | { |
41 | 44 | $this->app = $app; |
@@ -91,7 +91,7 @@ |
||
91 | 91 | ))); |
92 | 92 | |
93 | 93 | $app = $this->app; |
94 | - $builder->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) use ($app) { |
|
94 | + $builder->addEventListener(FormEvents::PRE_SUBMIT, function(FormEvent $event) use ($app) { |
|
95 | 95 | // モーダルからのPOST時に、金額等をセットする. |
96 | 96 | if ('modal' === $app['request']->get('modal')) { |
97 | 97 | $data = $event->getData(); |
@@ -130,7 +130,7 @@ |
||
130 | 130 | /** |
131 | 131 | * @param \Eccube\Entity\Member $Member |
132 | 132 | * |
133 | - * @return void |
|
133 | + * @return boolean |
|
134 | 134 | */ |
135 | 135 | public function up(\Eccube\Entity\Member $Member) |
136 | 136 | { |
@@ -65,7 +65,7 @@ |
||
65 | 65 | * @param int|null|\Eccube\Entity\ProductClass $ProductClass 商品規格 |
66 | 66 | * @param int|null|\Eccube\Entity\Master\Pref $Pref 都道府県 |
67 | 67 | * @param int|null|\Eccube\Entity\Master\Country $Country 国 |
68 | - * @return \Eccube\Entity\TaxRule 税設定情報 |
|
68 | + * @return integer 税設定情報 |
|
69 | 69 | * |
70 | 70 | * @throws NoResultException |
71 | 71 | */ |
@@ -201,7 +201,7 @@ |
||
201 | 201 | } |
202 | 202 | |
203 | 203 | /** |
204 | - * @param \Eccube\Entity\ProductClass|integer $ProductClass |
|
204 | + * @param string $ProductClass |
|
205 | 205 | * @param integer $quantity |
206 | 206 | * @return \Eccube\Service\CartService |
207 | 207 | * @throws CartException |
@@ -26,7 +26,6 @@ |
||
26 | 26 | |
27 | 27 | use Eccube\Common\Constant; |
28 | 28 | use Eccube\Util\EntityUtil; |
29 | -use Symfony\Component\Form\FormFactory; |
|
30 | 29 | use Symfony\Component\HttpFoundation\Request; |
31 | 30 | |
32 | 31 | class CsvExportService |
@@ -307,7 +307,7 @@ discard block |
||
307 | 307 | { |
308 | 308 | $config = $this->config; |
309 | 309 | |
310 | - return function ($value) use ($config) { |
|
310 | + return function($value) use ($config) { |
|
311 | 311 | return mb_convert_encoding( |
312 | 312 | (string) $value, $config['csv_export_encoding'], 'UTF-8' |
313 | 313 | ); |
@@ -431,7 +431,7 @@ discard block |
||
431 | 431 | if ($Conditions instanceof ArrayCollection) { |
432 | 432 | $Conditions = new ArrayCollection( |
433 | 433 | array_map( |
434 | - function ($Entity) use ($em) { |
|
434 | + function($Entity) use ($em) { |
|
435 | 435 | return $em->getRepository(get_class($Entity))->find($Entity->getId()); |
436 | 436 | }, $Conditions->toArray() |
437 | 437 | ) |
@@ -325,7 +325,6 @@ discard block |
||
325 | 325 | |
326 | 326 | /** |
327 | 327 | * @param $row |
328 | - * @param null $callback |
|
329 | 328 | */ |
330 | 329 | public function fputcsv($row) |
331 | 330 | { |
@@ -424,7 +423,6 @@ discard block |
||
424 | 423 | * XXX self::setExportQueryBuilder() をコールする前に EntityManager を取得したいので、引数で渡している |
425 | 424 | * |
426 | 425 | * @param array $searchData セッションから取得した検索条件の配列 |
427 | - * @param EntityManager $em |
|
428 | 426 | */ |
429 | 427 | protected function findDeserializeObjects(array &$searchData) |
430 | 428 | { |
@@ -23,8 +23,6 @@ |
||
23 | 23 | |
24 | 24 | namespace Eccube\Service; |
25 | 25 | |
26 | -use Eccube\Application; |
|
27 | - |
|
28 | 26 | |
29 | 27 | /** |
30 | 28 | * Copyright (C) 2012-2014 David de Boer <[email protected]> |
@@ -117,9 +117,9 @@ discard block |
||
117 | 117 | |
118 | 118 | $this->file = $file; |
119 | 119 | $this->file->setFlags( |
120 | - \SplFileObject::READ_CSV | |
|
121 | - \SplFileObject::SKIP_EMPTY | |
|
122 | - \SplFileObject::READ_AHEAD | |
|
120 | + \SplFileObject::READ_CSV| |
|
121 | + \SplFileObject::SKIP_EMPTY| |
|
122 | + \SplFileObject::READ_AHEAD| |
|
123 | 123 | \SplFileObject::DROP_NEW_LINE |
124 | 124 | ); |
125 | 125 | $this->file->setCsvControl( |
@@ -358,7 +358,7 @@ discard block |
||
358 | 358 | if ($count > 1) { |
359 | 359 | $incrementedHeaders[] = $header; |
360 | 360 | for ($i = 1; $i < $count; $i++) { |
361 | - $incrementedHeaders[] = $header . $i; |
|
361 | + $incrementedHeaders[] = $header.$i; |
|
362 | 362 | } |
363 | 363 | } else { |
364 | 364 | $incrementedHeaders[] = $header; |