Failed Conditions
Branch experimental/sf (68db07)
by Kentaro
42:17 queued 33:39
created
codeception/_support/FunctionalTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     use _generated\FunctionalTesterActions;
22 22
 
23
-   /**
24
-    * Define custom actions here
25
-    */
23
+    /**
24
+     * Define custom actions here
25
+     */
26 26
 }
Please login to merge, or discard this patch.
codeception/PageAccessCest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -17,12 +17,12 @@
 block discarded – undo
17 17
     {
18 18
         $I->wantTo('perform actions and see result');
19 19
         $I->amOnPage('/');
20
-        $I->see('くらしを楽しむライフスタイルグッズ','.copy');
20
+        $I->see('くらしを楽しむライフスタイルグッズ', '.copy');
21 21
         
22
-        $shopName = $I->grabFromDatabase('dtb_base_info','shop_name');
23
-        $I->assertEquals('EC-CUBE3 SHOP',$shopName);
22
+        $shopName = $I->grabFromDatabase('dtb_base_info', 'shop_name');
23
+        $I->assertEquals('EC-CUBE3 SHOP', $shopName);
24 24
 
25
-        $products = $I->grabFromDatabase('dtb_product','status',array('product_id'=>1));
25
+        $products = $I->grabFromDatabase('dtb_product', 'status', array('product_id'=>1));
26 26
         codecept_debug($products);
27 27
 
28 28
         $bi = Fixtures::get('baseinfo');
Please login to merge, or discard this patch.
app/Acme/Controller/AController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,9 +14,9 @@
 block discarded – undo
14 14
 namespace Acme\Controller;
15 15
 
16 16
 use Eccube\Application;
17
-use Symfony\Component\HttpFoundation\Request;
18 17
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
19 18
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
19
+use Symfony\Component\HttpFoundation\Request;
20 20
 
21 21
 /**
22 22
  * @Route("/test")
Please login to merge, or discard this patch.
app/Acme/Controller/TestController.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,12 +14,12 @@
 block discarded – undo
14 14
 namespace Acme\Controller;
15 15
 
16 16
 use Eccube\Application;
17
-use Symfony\Component\HttpFoundation\Response;
18
-use Symfony\Component\HttpFoundation\Request;
19
-use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
20 17
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
18
+use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
21 19
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Security;
22 20
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
21
+use Symfony\Component\HttpFoundation\Request;
22
+use Symfony\Component\HttpFoundation\Response;
23 23
 
24 24
 /**
25 25
  * @Route("/test")
Please login to merge, or discard this patch.
codeception/acceptance/EA03ProductCest.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,13 +3,13 @@
 block discarded – undo
3 3
 use Codeception\Util\Fixtures;
4 4
 use Page\Admin\CategoryCsvUploadPage;
5 5
 use Page\Admin\CategoryManagePage;
6
-use Page\Admin\CsvSettingsPage;
7 6
 use Page\Admin\ClassCategoryManagePage;
8 7
 use Page\Admin\ClassNameManagePage;
8
+use Page\Admin\CsvSettingsPage;
9 9
 use Page\Admin\ProductClassEditPage;
10 10
 use Page\Admin\ProductCsvUploadPage;
11
-use Page\Admin\ProductManagePage;
12 11
 use Page\Admin\ProductEditPage;
12
+use Page\Admin\ProductManagePage;
13 13
 
14 14
 /**
15 15
  * @group admin
Please login to merge, or discard this patch.
codeception/acceptance/EA06ContentsManagementCest.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,10 +6,10 @@
 block discarded – undo
6 6
 use Page\Admin\FileManagePage;
7 7
 use Page\Admin\LayoutEditPage;
8 8
 use Page\Admin\LayoutManagePage;
9
-use Page\Admin\NewsManagePage;
10 9
 use Page\Admin\NewsEditPage;
11
-use Page\Admin\PageManagePage;
10
+use Page\Admin\NewsManagePage;
12 11
 use Page\Admin\PageEditPage;
12
+use Page\Admin\PageManagePage;
13 13
 
14 14
 /**
15 15
  * @group admin
Please login to merge, or discard this patch.
codeception/acceptance/EA09ShippingCest.php 1 patch
Unused Use Statements   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,10 +2,9 @@
 block discarded – undo
2 2
 
3 3
 use Codeception\Util\Fixtures;
4 4
 use Page\Admin\CsvSettingsPage;
5
-use Page\Admin\ShippingManagePage;
6
-use Page\Admin\ShippingEditPage;
7 5
 use Page\Admin\OrderEditPage;
8
-use Eccube\Entity\Master\ShippingStatus;
6
+use Page\Admin\ShippingEditPage;
7
+use Page\Admin\ShippingManagePage;
9 8
 
10 9
 /**
11 10
  * @group admin
Please login to merge, or discard this patch.
codeception/acceptance/EF03OrderCest.php 2 patches
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,14 +2,14 @@
 block discarded – undo
2 2
 
3 3
 use Codeception\Util\Fixtures;
4 4
 use Page\Front\CartPage;
5
+use Page\Front\CustomerAddressAddPage;
6
+use Page\Front\MultipleShippingPage;
5 7
 use Page\Front\ProductDetailPage;
6 8
 use Page\Front\ShippingEditPage;
7 9
 use Page\Front\ShoppingCompletePage;
8 10
 use Page\Front\ShoppingConfirmPage;
9 11
 use Page\Front\ShoppingLoginPage;
10 12
 use Page\Front\ShoppingPage;
11
-use Page\Front\MultipleShippingPage;
12
-use Page\Front\CustomerAddressAddPage;
13 13
 
14 14
 /**
15 15
  * @group front
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -461,11 +461,11 @@  discard block
 block discarded – undo
461 461
 
462 462
         // 名前を比較してお届け先が上下どちらに表示されるか判断
463 463
         $compared = strnatcmp($customer->getName01(), $nameSei);
464
-        if($compared === 0) {
464
+        if ($compared === 0) {
465 465
             $compared = strnatcmp($customer->getName02(), $nameMei);
466 466
         }
467 467
         // 上下それぞれで名前、商品個数を設定
468
-        if($compared < 0) {
468
+        if ($compared < 0) {
469 469
             $quantity1 = $shipping1_quantity;
470 470
             $quantity2 = $shipping2_quantity;
471 471
             $name1 = $customer->getName01();
@@ -666,11 +666,11 @@  discard block
 block discarded – undo
666 666
 
667 667
         // 名前を比較してお届け先が上下どちらに表示されるか判断
668 668
         $compared = strnatcmp($customer->getName01(), $nameSei);
669
-        if($compared === 0) {
669
+        if ($compared === 0) {
670 670
             $compared = strnatcmp($customer->getName02(), $nameMei);
671 671
         }
672 672
         // 上下それぞれで名前、商品個数を設定
673
-        if($compared < 0) {
673
+        if ($compared < 0) {
674 674
             $quantity1 = $shipping1_quantity;
675 675
             $quantity2 = $shipping2_quantity;
676 676
             $name1 = $customer->getName01();
@@ -826,11 +826,11 @@  discard block
 block discarded – undo
826 826
 
827 827
         // 名前を比較してお届け先が上下どちらに表示されるか判断
828 828
         $compared = strnatcmp($customer->getName01(), $nameSei);
829
-        if($compared === 0) {
829
+        if ($compared === 0) {
830 830
             $compared = strnatcmp($customer->getName02(), $nameMei);
831 831
         }
832 832
         // 上下それぞれで名前、商品個数を設定
833
-        if($compared < 0) {
833
+        if ($compared < 0) {
834 834
             $quantity1 = $shipping1_quantity;
835 835
             $quantity2 = $shipping2_quantity;
836 836
             $name1 = $customer->getName01();
Please login to merge, or discard this patch.
codeception/acceptance/ZZ99PluginUninstallerCest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Codeception\Util\Fixtures;
4 3
 use Page\Admin\OwnersPluginPage;
5 4
 
6 5
 /**
Please login to merge, or discard this patch.