Failed Conditions
Pull Request — 4.0 (#4586)
by Kentaro
44:48 queued 31:32
created
src/Eccube/Form/Type/Admin/OrderItemType.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,8 +36,8 @@
 block discarded – undo
36 36
 use Symfony\Component\Form\FormEvents;
37 37
 use Symfony\Component\Form\FormInterface;
38 38
 use Symfony\Component\OptionsResolver\OptionsResolver;
39
-use Symfony\Component\Validator\Constraints as Assert;
40 39
 use Symfony\Component\Validator\ConstraintViolationListInterface;
40
+use Symfony\Component\Validator\Constraints as Assert;
41 41
 use Symfony\Component\Validator\Validator\ValidatorInterface;
42 42
 
43 43
 class OrderItemType extends AbstractType
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Order/EditController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 namespace Eccube\Controller\Admin\Order;
15 15
 
16 16
 use Doctrine\Common\Collections\ArrayCollection;
17
-use Doctrine\Common\Collections\Criteria;
18 17
 use Eccube\Controller\AbstractController;
19 18
 use Eccube\Entity\Master\CustomerStatus;
20 19
 use Eccube\Entity\Master\OrderItemType;
Please login to merge, or discard this patch.
src/Eccube/Controller/ShoppingController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,8 +33,8 @@
 block discarded – undo
33 33
 use Eccube\Service\PurchaseFlow\PurchaseFlow;
34 34
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
35 35
 use Symfony\Component\Form\FormInterface;
36
-use Symfony\Component\HttpFoundation\Response;
37 36
 use Symfony\Component\HttpFoundation\Request;
37
+use Symfony\Component\HttpFoundation\Response;
38 38
 use Symfony\Component\Routing\Annotation\Route;
39 39
 use Symfony\Component\Routing\RouterInterface;
40 40
 use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
Please login to merge, or discard this patch.
src/Eccube/Form/Type/Admin/ProductType.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@
 block discarded – undo
24 24
 use Symfony\Component\Form\Extension\Core\Type\CollectionType;
25 25
 use Symfony\Component\Form\Extension\Core\Type\FileType;
26 26
 use Symfony\Component\Form\Extension\Core\Type\HiddenType;
27
-use Symfony\Component\Form\Extension\Core\Type\TextareaType;
28 27
 use Symfony\Component\Form\Extension\Core\Type\TextType;
28
+use Symfony\Component\Form\Extension\Core\Type\TextareaType;
29 29
 use Symfony\Component\Form\FormBuilderInterface;
30 30
 use Symfony\Component\Form\FormError;
31 31
 use Symfony\Component\Form\FormEvent;
Please login to merge, or discard this patch.
src/Eccube/Form/Type/Admin/ProductClassType.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,6 +13,8 @@  discard block
 block discarded – undo
13 13
 
14 14
 namespace Eccube\Form\Type\Admin;
15 15
 
16
+use Doctrine\ORM\EntityManagerInterface;
17
+use Eccube\Entity\ClassCategory;
16 18
 use Eccube\Form\DataTransformer;
17 19
 use Eccube\Form\Type\Master\DeliveryDurationType;
18 20
 use Eccube\Form\Type\Master\SaleTypeType;
@@ -27,8 +29,6 @@  discard block
 block discarded – undo
27 29
 use Symfony\Component\Form\FormEvents;
28 30
 use Symfony\Component\OptionsResolver\OptionsResolver;
29 31
 use Symfony\Component\Validator\Constraints as Assert;
30
-use Doctrine\ORM\EntityManagerInterface;
31
-use Eccube\Entity\ClassCategory;
32 32
 
33 33
 class ProductClassType extends AbstractType
34 34
 {
Please login to merge, or discard this patch.