Completed
Pull Request — 4.0 (#4790)
by k-yamamura
11:10
created
src/Eccube/Command/UpdateSchemaDoctrineCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -112,6 +112,9 @@
 block discarded – undo
112 112
         }
113 113
     }
114 114
 
115
+    /**
116
+     * @param string $outputDir
117
+     */
115 118
     protected function removeOutputDir($outputDir)
116 119
     {
117 120
         if (file_exists($outputDir)) {
Please login to merge, or discard this patch.
src/Eccube/Util/CacheUtil.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,6 @@
 block discarded – undo
111 111
     /**
112 112
      * Doctrineのキャッシュを削除します.
113 113
      *
114
-     * @param null $env
115 114
      *
116 115
      * @return string
117 116
      *
Please login to merge, or discard this patch.
src/Eccube/Repository/PageRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
      * @param  string                            $where 追加の検索条件
133 133
      * @param  string[]                          $parameters 追加の検索パラメーター
134 134
      *
135
-     * @return array                             ページ属性の配列
135
+     * @return null|\Symfony\Component\HttpFoundation\Request                             ページ属性の配列
136 136
      */
137 137
     public function getPageList($where = null, $parameters = [])
138 138
     {
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/AdminController.php 1 patch
Doc Comments   +6 added lines, -7 removed lines patch added patch discarded remove patch
@@ -412,7 +412,6 @@  discard block
 block discarded – undo
412 412
     }
413 413
 
414 414
     /**
415
-     * @param \Doctrine\ORM\EntityManagerInterface $em
416 415
      * @param array $excludes
417 416
      *
418 417
      * @return null|Request
@@ -447,7 +446,7 @@  discard block
 block discarded – undo
447 446
     /**
448 447
      * @param \DateTime $dateTime
449 448
      *
450
-     * @return array|mixed
449
+     * @return null|Request
451 450
      *
452 451
      * @throws \Doctrine\ORM\NonUniqueResultException
453 452
      */
@@ -484,7 +483,7 @@  discard block
 block discarded – undo
484 483
     /**
485 484
      * @param \DateTime $dateTime
486 485
      *
487
-     * @return array|mixed
486
+     * @return null|Request
488 487
      *
489 488
      * @throws \Doctrine\ORM\NonUniqueResultException
490 489
      */
@@ -523,7 +522,7 @@  discard block
 block discarded – undo
523 522
     /**
524 523
      * 在庫切れ商品数を取得
525 524
      *
526
-     * @return mixed
525
+     * @return null|Request
527 526
      *
528 527
      * @throws \Doctrine\ORM\NonUniqueResultException
529 528
      */
@@ -541,7 +540,7 @@  discard block
 block discarded – undo
541 540
     /**
542 541
      * 商品数を取得
543 542
      *
544
-     * @return mixed
543
+     * @return null|Request
545 544
      *
546 545
      * @throws \Doctrine\ORM\NonUniqueResultException
547 546
      */
@@ -558,7 +557,7 @@  discard block
 block discarded – undo
558 557
     /**
559 558
      * 本会員数を取得
560 559
      *
561
-     * @return mixed
560
+     * @return null|Request
562 561
      *
563 562
      * @throws \Doctrine\ORM\NonUniqueResultException
564 563
      */
@@ -577,7 +576,7 @@  discard block
 block discarded – undo
577 576
      *
578 577
      * @param Carbon $fromDate
579 578
      * @param Carbon $toDate
580
-     * @param $format
579
+     * @param string $format
581 580
      *
582 581
      * @return array
583 582
      */
Please login to merge, or discard this patch.
src/Eccube/Form/Type/Admin/ProductType.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -194,7 +194,7 @@
 block discarded – undo
194 194
     /**
195 195
      * 指定された複数ディレクトリのうち、いずれかのディレクトリ以下にファイルが存在するかを確認。
196 196
      *
197
-     * @param $form FormInterface
197
+     * @param FormInterface $form FormInterface
198 198
      * @param $dirs array
199 199
      */
200 200
     private function validateFilePath($form, $dirs)
Please login to merge, or discard this patch.
src/Eccube/Service/SchemaService.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,6 @@
 block discarded – undo
47 47
      * @param callable $callback Metadata を生成した後に実行されるコールバック関数
48 48
      * @param array $generatedFiles Proxy ファイルパスの配列
49 49
      * @param string $proxiesDirectory Proxy ファイルを格納したディレクトリ
50
-     * @param bool $saveMode UpdateSchema を即時実行する場合 true
51 50
      * @param string $outputDir Metadata の出力先ディレクトリ
52 51
      */
53 52
     public function executeCallback(callable $callback, $generatedFiles, $proxiesDirectory, $outputDir = null)
Please login to merge, or discard this patch.
src/Eccube/Service/Composer/ComposerApiService.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -386,6 +386,9 @@
 block discarded – undo
386 386
         $this->init($BaseInfo);
387 387
     }
388 388
 
389
+    /**
390
+     * @param string $packageNames
391
+     */
389 392
     private function dropTableToExtra($packageNames)
390 393
     {
391 394
         foreach (explode(' ', trim($packageNames)) as $packageName) {
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
@@ -445,6 +445,9 @@  discard block
 block discarded – undo
445 445
             ->削除();
446 446
     }
447 447
 
448
+    /**
449
+     * @param string $fileName
450
+     */
448 451
     private function publishPlugin($fileName)
449 452
     {
450 453
         copy(codecept_data_dir().'/'.'plugins/'.$fileName, codecept_root_dir().'/repos/'.$fileName);
@@ -591,6 +594,9 @@  discard block
 block discarded – undo
591 594
     /** @var Store_Plugin */
592 595
     protected $dependency;
593 596
 
597
+    /**
598
+     * @param string $code
599
+     */
594 600
     public function __construct(AcceptanceTester $I, $code, Store_Plugin $dependency = null)
595 601
     {
596 602
         parent::__construct($I);
@@ -723,6 +729,9 @@  discard block
 block discarded – undo
723 729
         return $this;
724 730
     }
725 731
 
732
+    /**
733
+     * @param string $fileName
734
+     */
726 735
     protected function publishPlugin($fileName)
727 736
     {
728 737
         $published = copy(codecept_data_dir().'/'.'plugins/'.$fileName, codecept_root_dir().'/repos/'.$fileName);
@@ -741,6 +750,9 @@  discard block
 block discarded – undo
741 750
     /** @var string */
742 751
     private $code;
743 752
 
753
+    /**
754
+     * @param string $code
755
+     */
744 756
     public function __construct(AcceptanceTester $I, $code)
745 757
     {
746 758
         parent::__construct($I);
Please login to merge, or discard this patch.