Completed
Push — github_actions ( f3f713 )
by NOBU
04:49
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 2 patches
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.
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,24 +16,24 @@
 block discarded – undo
16 16
 use Doctrine\ORM\NoResultException;
17 17
 use Eccube\Controller\AbstractController;
18 18
 use Eccube\Entity\Layout;
19
-use Eccube\Form\Type\Admin\LayoutType;
20 19
 use Eccube\Entity\Master\ProductStatus;
21
-use Eccube\Repository\BlockRepository;
20
+use Eccube\Form\Type\Admin\LayoutType;
22 21
 use Eccube\Repository\BlockPositionRepository;
22
+use Eccube\Repository\BlockRepository;
23 23
 use Eccube\Repository\LayoutRepository;
24
+use Eccube\Repository\Master\DeviceTypeRepository;
24 25
 use Eccube\Repository\PageLayoutRepository;
25 26
 use Eccube\Repository\PageRepository;
26 27
 use Eccube\Repository\ProductRepository;
27
-use Eccube\Repository\Master\DeviceTypeRepository;
28 28
 use Eccube\Util\CacheUtil;
29 29
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
30 30
 use Symfony\Component\HttpFoundation\JsonResponse;
31
+use Symfony\Component\HttpFoundation\RedirectResponse;
31 32
 use Symfony\Component\HttpFoundation\Request;
32 33
 use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
33 34
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
34 35
 use Symfony\Component\Routing\Annotation\Route;
35 36
 use Twig\Environment as Twig;
36
-use Symfony\Component\HttpFoundation\RedirectResponse;
37 37
 
38 38
 class LayoutController extends AbstractController
39 39
 {
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/Admin/Setting/System/LogController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,9 +17,9 @@
 block discarded – undo
17 17
 use Eccube\Event\EccubeEvents;
18 18
 use Eccube\Event\EventArgs;
19 19
 use Eccube\Form\Type\Admin\LogType;
20
-use Symfony\Component\Routing\Annotation\Route;
21 20
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
22 21
 use Symfony\Component\HttpFoundation\Request;
22
+use Symfony\Component\Routing\Annotation\Route;
23 23
 
24 24
 class LogController extends AbstractController
25 25
 {
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Setting/System/MasterdataController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@
 block discarded – undo
19 19
 use Eccube\Event\EventArgs;
20 20
 use Eccube\Form\Type\Admin\MasterdataEditType;
21 21
 use Eccube\Form\Type\Admin\MasterdataType;
22
-use Symfony\Component\Routing\Annotation\Route;
23 22
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
24 23
 use Symfony\Component\HttpFoundation\Request;
24
+use Symfony\Component\Routing\Annotation\Route;
25 25
 
26 26
 class MasterdataController extends AbstractController
27 27
 {
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Setting/System/MemberController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,9 +20,9 @@
 block discarded – undo
20 20
 use Eccube\Event\EventArgs;
21 21
 use Eccube\Form\Type\Admin\MemberType;
22 22
 use Eccube\Repository\MemberRepository;
23
-use Symfony\Component\Routing\Annotation\Route;
24 23
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
25 24
 use Symfony\Component\HttpFoundation\Request;
25
+use Symfony\Component\Routing\Annotation\Route;
26 26
 use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
27 27
 use Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface;
28 28
 
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Setting/System/SystemController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,10 +15,10 @@
 block discarded – undo
15 15
 
16 16
 use Eccube\Common\Constant;
17 17
 use Eccube\Service\SystemService;
18
-use Symfony\Component\Routing\Annotation\Route;
19 18
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
20 19
 use Symfony\Component\HttpFoundation\Request;
21 20
 use Symfony\Component\HttpFoundation\Response;
21
+use Symfony\Component\Routing\Annotation\Route;
22 22
 
23 23
 class SystemController
24 24
 {
Please login to merge, or discard this patch.