Failed Conditions
Pull Request — experimental/sf (#3225)
by Kentaro
50:47 queued 42:12
created
codeception/_support/Page/Admin/ShippingManagePage.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -58,6 +58,9 @@  discard block
 block discarded – undo
58 58
         return $this;
59 59
     }
60 60
 
61
+    /**
62
+     * @param integer $rowNum
63
+     */
61 64
     public function 一覧_編集($rowNum)
62 65
     {
63 66
         $this->tester->click(['xpath' => "//*[@id='form_bulk']/div[2]/div/table/tbody/tr[${rowNum}]/td[2]/a"]);
@@ -117,6 +120,9 @@  discard block
 block discarded – undo
117 120
         $this->tester->click('#form_bulk #btn_bulk_mail');
118 121
     }
119 122
 
123
+    /**
124
+     * @param integer $rowNum
125
+     */
120 126
     public function 一覧_チェックボックス($rowNum)
121 127
     {
122 128
         $this->tester->click(['xpath' => "//*[@id='form_bulk']/div[2]/div/table/tbody/tr[${rowNum}]/td[1]/input"]);
Please login to merge, or discard this patch.
codeception/_support/Page/Front/ShoppingLoginPage.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -27,6 +27,9 @@
 block discarded – undo
27 27
 class ShoppingLoginPage extends AbstractFrontPage
28 28
 {
29 29
 
30
+    /**
31
+     * @param \AcceptanceTester $I
32
+     */
30 33
     public static function at($I)
31 34
     {
32 35
         $page = new self($I);
Please login to merge, or discard this patch.
codeception/acceptance/AA0PluginInstallerCest.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.
codeception/acceptance/EA01TopCest.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\Admin\CustomerManagePage;
5 4
 use Page\Admin\OrderManagePage;
6 5
 use Page\Admin\TopPage;
7 6
 
Please login to merge, or discard this patch.
codeception/acceptance/EA02AuthenticationCest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Codeception\Util\Fixtures;
4
-
5 3
 /**
6 4
  * @group admin
7 5
  * @group admin01
Please login to merge, or discard this patch.
codeception/acceptance/EA07BasicinfoCest.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Codeception\Util\Fixtures;
4 3
 use Page\Admin\CsvSettingsPage;
5
-use Page\Admin\CustomerAgreementSettingPage;
6 4
 use Page\Admin\DeliveryEditPage;
7 5
 use Page\Admin\DeliveryManagePage;
8 6
 use Page\Admin\MailSettingsPage;
@@ -10,7 +8,6 @@  discard block
 block discarded – undo
10 8
 use Page\Admin\PaymentManagePage;
11 9
 use Page\Admin\ShopSettingPage;
12 10
 use Page\Admin\TaxManagePage;
13
-use Page\Admin\TradelawSettingPage;
14 11
 
15 12
 /**
16 13
  * @group admin
Please login to merge, or discard this patch.
codeception/acceptance/EA09ShippingCest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Page\Admin\ShippingManagePage;
6 6
 use Page\Admin\ShippingEditPage;
7 7
 use Page\Admin\OrderEditPage;
8
-use Eccube\Entity\Master\ShippingStatus;
9 8
 
10 9
 /**
11 10
  * @group admin
Please login to merge, or discard this patch.
codeception/acceptance/EF06OtherCest.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 Eccube\Entity\Master\CustomerStatus;
5 4
 
6 5
 /**
7 6
  * @group front
Please login to merge, or discard this patch.
src/Eccube/Controller/AbstractController.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -153,6 +153,9 @@  discard block
 block discarded – undo
153 153
         $this->addWarning('admin.delete.warning', 'admin');
154 154
     }
155 155
 
156
+    /**
157
+     * @param string $targetPath
158
+     */
156 159
     public function setLoginTargetPath($targetPath, $namespace = null)
157 160
     {
158 161
         if (is_null($namespace)) {
@@ -169,7 +172,7 @@  discard block
 block discarded – undo
169 172
      * @param array  $path An array of path parameters
170 173
      * @param array  $query An array of query parameters
171 174
      *
172
-     * @return Response A Response instance
175
+     * @return \Symfony\Component\HttpFoundation\Response A Response instance
173 176
      */
174 177
     public function forwardToRoute($route, array $path = [], array $query = [])
175 178
     {
Please login to merge, or discard this patch.