Failed Conditions
Pull Request — 4.0 (#3452)
by k-yamamura
298:21 queued 232:10
created
codeception/acceptance/EF02ProductCest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 use Codeception\Util\Fixtures;
4
-use Page\Front\CartPage;
5 4
 use Page\Front\ProductDetailPage;
6 5
 use Page\Front\ProductListPage;
7 6
 use Page\Front\TopPage;
Please login to merge, or discard this patch.
codeception/_support/Page/Admin/ProductEditPage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
 
76 76
     public function 規格管理()
77 77
     {
78
-        $this->tester->scrollTo(['css' => '#standardConfig > div > div.d-block.text-center > a'],0, 200);
78
+        $this->tester->scrollTo(['css' => '#standardConfig > div > div.d-block.text-center > a'], 0, 200);
79 79
         $this->tester->click(['css' => '#standardConfig > div > div.d-block.text-center > a']);
80 80
         $this->tester->waitForElement(['css' => '#standardConfig > div > div.d-block.text-center > a']);
81 81
         $this->tester->wait(1);
Please login to merge, or discard this patch.
src/Eccube/Service/PurchaseFlow/Processor/AddPointProcessor.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
 
16 16
 use Doctrine\ORM\EntityManagerInterface;
17 17
 use Eccube\Entity\BaseInfo;
18
-use Eccube\Entity\ItemHolderInterface;
19 18
 use Eccube\Entity\BaseInfoRepository;
19
+use Eccube\Entity\ItemHolderInterface;
20 20
 use Eccube\Service\PurchaseFlow\ItemHolderProcessor;
21 21
 use Eccube\Service\PurchaseFlow\ProcessResult;
22 22
 use Eccube\Service\PurchaseFlow\PurchaseContext;
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 Cart[] $Carts
132 132
      *
133 133
      * @return \Symfony\Component\HttpFoundation\RedirectResponse
134 134
      */
Please login to merge, or discard this patch.
codeception/_support/Page/Front/ProductDetailPage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
      * @param null $category2
80 80
      * @return ProductDetailPage
81 81
      */
82
-    public function カートに入れる($num, $category1 = null, $category2= null)
82
+    public function カートに入れる($num, $category1 = null, $category2 = null)
83 83
     {
84 84
         $this->tester->fillField(['id' => 'quantity'], $num);
85 85
         if (!is_null($category1)) {
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
@@ -389,7 +389,6 @@  discard block
 block discarded – undo
389 389
     }
390 390
 
391 391
     /**
392
-     * @param \Doctrine\ORM\EntityManagerInterface $em
393 392
      * @param array $excludes
394 393
      *
395 394
      * @return null|Request
@@ -422,8 +421,8 @@  discard block
 block discarded – undo
422 421
     }
423 422
 
424 423
     /**
425
-     * @param $dateTime
426
-     * @return array|mixed
424
+     * @param \DateTime $dateTime
425
+     * @return null|Request
427 426
      * @throws \Doctrine\ORM\NonUniqueResultException
428 427
      */
429 428
     private function getSalesByDay($dateTime)
@@ -458,8 +457,8 @@  discard block
 block discarded – undo
458 457
     }
459 458
 
460 459
     /**
461
-     * @param $dateTime
462
-     * @return array|mixed
460
+     * @param \DateTime $dateTime
461
+     * @return null|Request
463 462
      * @throws \Doctrine\ORM\NonUniqueResultException
464 463
      */
465 464
     private function getSalesByMonth($dateTime)
@@ -496,7 +495,7 @@  discard block
 block discarded – undo
496 495
     /**
497 496
      * 在庫切れ商品数を取得
498 497
      *
499
-     * @return mixed
498
+     * @return null|Request
500 499
      *
501 500
      * @throws \Doctrine\ORM\NonUniqueResultException
502 501
      */
@@ -514,7 +513,7 @@  discard block
 block discarded – undo
514 513
     /**
515 514
      * 商品数を取得
516 515
      *
517
-     * @return mixed
516
+     * @return null|Request
518 517
      *
519 518
      * @throws \Doctrine\ORM\NonUniqueResultException
520 519
      */
@@ -531,7 +530,7 @@  discard block
 block discarded – undo
531 530
     /**
532 531
      * 本会員数を取得
533 532
      *
534
-     * @return mixed
533
+     * @return null|Request
535 534
      *
536 535
      * @throws \Doctrine\ORM\NonUniqueResultException
537 536
      */
@@ -550,7 +549,7 @@  discard block
 block discarded – undo
550 549
      *
551 550
      * @param Carbon $fromDate
552 551
      * @param Carbon $toDate
553
-     * @param $format
552
+     * @param string $format
554 553
      *
555 554
      * @return array
556 555
      */
Please login to merge, or discard this patch.