Completed
Pull Request — 4.0 (#3553)
by akira
06:57
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.
codeception/acceptance/EF06OtherCest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
         $password = substr(str_shuffle('1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'), 0, 20);
98 98
 
99 99
         // メルアド・新パスワード設定
100
-        $I->submitForm('#form1',[
100
+        $I->submitForm('#form1', [
101 101
             'login_email' => $customer->getEmail(),
102 102
             'password[first]' => $password,
103 103
             'password[second]' => $password
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.
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/EntryController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -270,7 +270,7 @@
 block discarded – undo
270 270
 
271 271
             // Assign session carts into customer carts
272 272
             $Carts = $this->cartService->getCarts();
273
-            $qtyInCart = array_reduce($Carts, function($qty, $Cart) {
273
+            $qtyInCart = array_reduce($Carts, function ($qty, $Cart) {
274 274
                 return $qty + $Cart->getTotalQuantity();
275 275
             });
276 276
 
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,9 +421,9 @@  discard block
 block discarded – undo
422 421
     }
423 422
 
424 423
     /**
425
-     * @param $dateTime
424
+     * @param \DateTime $dateTime
426 425
      *
427
-     * @return array|mixed
426
+     * @return null|Request
428 427
      *
429 428
      * @throws \Doctrine\ORM\NonUniqueResultException
430 429
      */
@@ -460,9 +459,9 @@  discard block
 block discarded – undo
460 459
     }
461 460
 
462 461
     /**
463
-     * @param $dateTime
462
+     * @param \DateTime $dateTime
464 463
      *
465
-     * @return array|mixed
464
+     * @return null|Request
466 465
      *
467 466
      * @throws \Doctrine\ORM\NonUniqueResultException
468 467
      */
@@ -500,7 +499,7 @@  discard block
 block discarded – undo
500 499
     /**
501 500
      * 在庫切れ商品数を取得
502 501
      *
503
-     * @return mixed
502
+     * @return null|Request
504 503
      *
505 504
      * @throws \Doctrine\ORM\NonUniqueResultException
506 505
      */
@@ -518,7 +517,7 @@  discard block
 block discarded – undo
518 517
     /**
519 518
      * 商品数を取得
520 519
      *
521
-     * @return mixed
520
+     * @return null|Request
522 521
      *
523 522
      * @throws \Doctrine\ORM\NonUniqueResultException
524 523
      */
@@ -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
      */
@@ -554,7 +553,7 @@  discard block
 block discarded – undo
554 553
      *
555 554
      * @param Carbon $fromDate
556 555
      * @param Carbon $toDate
557
-     * @param $format
556
+     * @param string $format
558 557
      *
559 558
      * @return array
560 559
      */
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Setting/System/AuthorityController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,10 +18,10 @@
 block discarded – undo
18 18
 use Eccube\Event\EventArgs;
19 19
 use Eccube\Form\Type\Admin\AuthorityRoleType;
20 20
 use Eccube\Repository\AuthorityRoleRepository;
21
-use Symfony\Component\Routing\Annotation\Route;
22 21
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
23 22
 use Symfony\Component\Form\Extension\Core\Type\CollectionType;
24 23
 use Symfony\Component\HttpFoundation\Request;
24
+use Symfony\Component\Routing\Annotation\Route;
25 25
 
26 26
 class AuthorityController extends AbstractController
27 27
 {
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.