Completed
Push — 4.0 ( 41b1d0...cfe694 )
by Ryo
16:59 queued 09:20
created
src/Eccube/Util/CacheUtil.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,6 @@
 block discarded – undo
89 89
      * Doctrineのキャッシュを削除します.
90 90
      * APP_ENV=prodの場合のみ実行されます.
91 91
      *
92
-     * @param null $env
93 92
      * @return string
94 93
      * @throws \Exception
95 94
      */
Please login to merge, or discard this patch.
src/Eccube/Repository/BaseInfoRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
codeception/acceptance/EA10PluginCest.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -391,6 +391,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Eccube/EventListener/TransactionListener.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.