@@ -89,7 +89,6 @@ |
||
89 | 89 | * Doctrineのキャッシュを削除します. |
90 | 90 | * APP_ENV=prodの場合のみ実行されます. |
91 | 91 | * |
92 | - * @param null $env |
|
93 | 92 | * @return string |
94 | 93 | * @throws \Exception |
95 | 94 | */ |
@@ -44,7 +44,7 @@ |
||
44 | 44 | $BaseInfo = $this->find($id); |
45 | 45 | |
46 | 46 | if (null === $BaseInfo) { |
47 | - throw new \Exception('BaseInfo not found. id = '. $id); |
|
47 | + throw new \Exception('BaseInfo not found. id = '.$id); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | return $this->find($id); |
@@ -391,6 +391,9 @@ discard block |
||
391 | 391 | $Horizon->検証(); |
392 | 392 | } |
393 | 393 | |
394 | + /** |
|
395 | + * @param string $fileName |
|
396 | + */ |
|
394 | 397 | private function publishPlugin($fileName) |
395 | 398 | { |
396 | 399 | copy(codecept_data_dir().'/'.'plugins/'.$fileName, codecept_root_dir().'/repos/'.$fileName); |
@@ -534,6 +537,9 @@ discard block |
||
534 | 537 | /** @var Store_Plugin */ |
535 | 538 | protected $dependency; |
536 | 539 | |
540 | + /** |
|
541 | + * @param string $code |
|
542 | + */ |
|
537 | 543 | public function __construct(AcceptanceTester $I, $code, Store_Plugin $dependency = null) |
538 | 544 | { |
539 | 545 | parent::__construct($I); |
@@ -666,6 +672,9 @@ discard block |
||
666 | 672 | return $this; |
667 | 673 | } |
668 | 674 | |
675 | + /** |
|
676 | + * @param string $fileName |
|
677 | + */ |
|
669 | 678 | protected function publishPlugin($fileName) |
670 | 679 | { |
671 | 680 | $published = copy(codecept_data_dir().'/'.'plugins/'.$fileName, codecept_root_dir().'/repos/'.$fileName); |
@@ -684,6 +693,9 @@ discard block |
||
684 | 693 | /** @var string */ |
685 | 694 | private $code; |
686 | 695 | |
696 | + /** |
|
697 | + * @param string $code |
|
698 | + */ |
|
687 | 699 | public function __construct(AcceptanceTester $I, $code) |
688 | 700 | { |
689 | 701 | parent::__construct($I); |
@@ -13,8 +13,8 @@ |
||
13 | 13 | |
14 | 14 | namespace Eccube\EventListener; |
15 | 15 | |
16 | -use Doctrine\Dbal\Connection; |
|
17 | 16 | use Doctrine\DBAL\TransactionIsolationLevel; |
17 | +use Doctrine\Dbal\Connection; |
|
18 | 18 | use Doctrine\ORM\EntityManager; |
19 | 19 | use Doctrine\ORM\EntityManagerInterface; |
20 | 20 | use Symfony\Component\EventDispatcher\EventSubscriberInterface; |