Completed
Push — fix3975 ( 21358b )
by NOBU
05:17
created
codeception/_support/Page/Admin/ProductManagePage.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -75,6 +75,9 @@  discard block
 block discarded – undo
75 75
         return $this;
76 76
     }
77 77
 
78
+    /**
79
+     * @param integer $value
80
+     */
78 81
     public function 詳細検索_ステータス($value)
79 82
     {
80 83
         $this->tester->click(self::$詳細検索ボタン);
@@ -193,6 +196,9 @@  discard block
 block discarded – undo
193 196
         return $this;
194 197
     }
195 198
 
199
+    /**
200
+     * @param integer $rowNum
201
+     */
196 202
     public function Accept_複製する($rowNum)
197 203
     {
198 204
         $modalCssSelector = "#page_admin_product > div.c-container > div.c-contentsArea > div.c-contentsArea__cols > div > div > form > div.card.rounded.border-0.mb-4 > div.card-body.p-0 > table > tbody > tr:nth-child(${rowNum}) > td.align-middle.pr-3 > div > div:nth-child(2) div.modal";
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
@@ -404,6 +404,9 @@  discard block
 block discarded – undo
404 404
         $Horizon->インストール();
405 405
     }
406 406
 
407
+    /**
408
+     * @param string $fileName
409
+     */
407 410
     private function publishPlugin($fileName)
408 411
     {
409 412
         copy(codecept_data_dir().'/'.'plugins/'.$fileName, codecept_root_dir().'/repos/'.$fileName);
@@ -547,6 +550,9 @@  discard block
 block discarded – undo
547 550
     /** @var Store_Plugin */
548 551
     protected $dependency;
549 552
 
553
+    /**
554
+     * @param string $code
555
+     */
550 556
     public function __construct(AcceptanceTester $I, $code, Store_Plugin $dependency = null)
551 557
     {
552 558
         parent::__construct($I);
@@ -679,6 +685,9 @@  discard block
 block discarded – undo
679 685
         return $this;
680 686
     }
681 687
 
688
+    /**
689
+     * @param string $fileName
690
+     */
682 691
     protected function publishPlugin($fileName)
683 692
     {
684 693
         $published = copy(codecept_data_dir().'/'.'plugins/'.$fileName, codecept_root_dir().'/repos/'.$fileName);
@@ -697,6 +706,9 @@  discard block
 block discarded – undo
697 706
     /** @var string */
698 707
     private $code;
699 708
 
709
+    /**
710
+     * @param string $code
711
+     */
700 712
     public function __construct(AcceptanceTester $I, $code)
701 713
     {
702 714
         parent::__construct($I);
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/AdminController.php 1 patch
Doc Comments   +8 added lines, -9 removed lines patch added patch discarded remove patch
@@ -406,7 +406,6 @@  discard block
 block discarded – undo
406 406
     }
407 407
 
408 408
     /**
409
-     * @param \Doctrine\ORM\EntityManagerInterface $em
410 409
      * @param array $excludes
411 410
      *
412 411
      * @return null|Request
@@ -439,9 +438,9 @@  discard block
 block discarded – undo
439 438
     }
440 439
 
441 440
     /**
442
-     * @param $dateTime
441
+     * @param \DateTime $dateTime
443 442
      *
444
-     * @return array|mixed
443
+     * @return null|Request
445 444
      *
446 445
      * @throws \Doctrine\ORM\NonUniqueResultException
447 446
      */
@@ -477,9 +476,9 @@  discard block
 block discarded – undo
477 476
     }
478 477
 
479 478
     /**
480
-     * @param $dateTime
479
+     * @param \DateTime $dateTime
481 480
      *
482
-     * @return array|mixed
481
+     * @return null|Request
483 482
      *
484 483
      * @throws \Doctrine\ORM\NonUniqueResultException
485 484
      */
@@ -517,7 +516,7 @@  discard block
 block discarded – undo
517 516
     /**
518 517
      * 在庫切れ商品数を取得
519 518
      *
520
-     * @return mixed
519
+     * @return null|Request
521 520
      *
522 521
      * @throws \Doctrine\ORM\NonUniqueResultException
523 522
      */
@@ -535,7 +534,7 @@  discard block
 block discarded – undo
535 534
     /**
536 535
      * 商品数を取得
537 536
      *
538
-     * @return mixed
537
+     * @return null|Request
539 538
      *
540 539
      * @throws \Doctrine\ORM\NonUniqueResultException
541 540
      */
@@ -552,7 +551,7 @@  discard block
 block discarded – undo
552 551
     /**
553 552
      * 本会員数を取得
554 553
      *
555
-     * @return mixed
554
+     * @return null|Request
556 555
      *
557 556
      * @throws \Doctrine\ORM\NonUniqueResultException
558 557
      */
@@ -571,7 +570,7 @@  discard block
 block discarded – undo
571 570
      *
572 571
      * @param Carbon $fromDate
573 572
      * @param Carbon $toDate
574
-     * @param $format
573
+     * @param string $format
575 574
      *
576 575
      * @return array
577 576
      */
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Content/LayoutController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
      * @param BlockRepository $blockRepository
85 85
      * @param LayoutRepository $layoutRepository
86 86
      * @param PageLayoutRepository $pageLayoutRepository
87
-     * @param pageRepository $pageRepository
87
+     * @param PageRepository $pageRepository
88 88
      * @param ProductRepository $productRepository
89 89
      * @param DeviceTypeRepository $deviceTypeRepository
90 90
      */
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Order/MailController.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      * @param MailService $mailService
57 57
      * @param MailHistoryRepository $mailHistoryRepository
58 58
      * @param OrderRepository $orderRepository
59
-     * @param twig $twig
59
+     * @param Environment $twig
60 60
      */
61 61
     public function __construct(
62 62
         MailService $mailService,
@@ -227,6 +227,9 @@  discard block
 block discarded – undo
227 227
         ];
228 228
     }
229 229
 
230
+    /**
231
+     * @param Order $Order
232
+     */
230 233
     private function createBody($Order, $twig = 'Mail/order.twig')
231 234
     {
232 235
         return $this->renderView($twig, [
Please login to merge, or discard this patch.
src/Eccube/Controller/CartController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
     }
129 129
 
130 130
     /**
131
-     * @param $Carts
131
+     * @param \Eccube\Entity\Cart[] $Carts
132 132
      *
133 133
      * @return \Symfony\Component\HttpFoundation\RedirectResponse
134 134
      */
Please login to merge, or discard this patch.
src/Eccube/Entity/Order.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1658,7 +1658,7 @@
 block discarded – undo
1658 1658
         /**
1659 1659
          * Set orderStatus.
1660 1660
          *
1661
-         * @param \Eccube\Entity\Master\OrderStatus|null|object $orderStatus
1661
+         * @param null|Master\OrderStatus $orderStatus
1662 1662
          *
1663 1663
          * @return Order
1664 1664
          */
Please login to merge, or discard this patch.
src/Eccube/Service/Composer/ComposerProcessService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
      *
82 82
      * @throws PluginException
83 83
      *
84
-     * @param string $command
84
+     * @param string[] $commands
85 85
      */
86 86
     public function runCommand($commands, $output = null, $init = true)
87 87
     {
Please login to merge, or discard this patch.
src/Eccube/Service/PluginApiService.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -250,6 +250,9 @@
 block discarded – undo
250 250
         $this->updatePluginStatus('/status/uninstalled', $Plugin);
251 251
     }
252 252
 
253
+    /**
254
+     * @param string $url
255
+     */
253 256
     private function updatePluginStatus($url, Plugin $Plugin)
254 257
     {
255 258
         if ($Plugin->getSource()) {
Please login to merge, or discard this patch.