Failed Conditions
Pull Request — experimental/sf (#3236)
by Kentaro
144:19 queued 116:23
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.
src/Eccube/Entity/AbstractEntity.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@
 block discarded – undo
16 16
 use Doctrine\Common\Annotations\Reader;
17 17
 use Doctrine\Common\Collections\Collection;
18 18
 use Doctrine\Common\Inflector\Inflector;
19
-use Doctrine\ORM\Mapping\MappedSuperclass;
20 19
 use Doctrine\ORM\Mapping\Id;
20
+use Doctrine\ORM\Mapping\MappedSuperclass;
21 21
 use Doctrine\ORM\Proxy\Proxy;
22 22
 use Symfony\Component\Serializer\Encoder\XmlEncoder;
23 23
 use Symfony\Component\Serializer\Normalizer\PropertyNormalizer;
Please login to merge, or discard this patch.
src/Eccube/Form/Type/Admin/OrderItemType.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -242,7 +242,7 @@
 block discarded – undo
242 242
 
243 243
     /**
244 244
      * @param FormInterface $form
245
-     * @param ValidatorInterface $errors
245
+     * @param ConstraintViolationListInterface $errors
246 246
      */
247 247
     protected function addErrorsIfExists(FormInterface $form, ConstraintViolationListInterface $errors)
248 248
     {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,10 +35,9 @@
 block discarded – undo
35 35
 use Symfony\Component\Form\FormEvent;
36 36
 use Symfony\Component\Form\FormEvents;
37 37
 use Symfony\Component\Form\FormInterface;
38
-use Symfony\Component\HttpFoundation\RequestStack;
39 38
 use Symfony\Component\OptionsResolver\OptionsResolver;
40
-use Symfony\Component\Validator\Constraints as Assert;
41 39
 use Symfony\Component\Validator\ConstraintViolationListInterface;
40
+use Symfony\Component\Validator\Constraints as Assert;
42 41
 use Symfony\Component\Validator\Validator\ValidatorInterface;
43 42
 
44 43
 class OrderItemType extends AbstractType
Please login to merge, or discard this patch.
src/Eccube/Service/OrderPdfService.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,8 +19,8 @@
 block discarded – undo
19 19
 use Eccube\Entity\OrderItem;
20 20
 use Eccube\Entity\Shipping;
21 21
 use Eccube\Repository\BaseInfoRepository;
22
-use Eccube\Repository\OrderRepository;
23 22
 use Eccube\Repository\OrderPdfRepository;
23
+use Eccube\Repository\OrderRepository;
24 24
 use Eccube\Repository\ShippingRepository;
25 25
 use Eccube\Twig\Extension\EccubeExtension;
26 26
 use setasign\Fpdi\TcpdfFpdi;
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.