Failed Conditions
Pull Request — 4.0 (#4844)
by chihiro
04:56
created
src/Eccube/Service/SchemaService.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\Doctrine\ORM\Mapping\Driver\NopAnnotationDriver;
20 20
 use Eccube\Doctrine\ORM\Mapping\Driver\ReloadSafeAnnotationDriver;
21 21
 use Eccube\Util\StringUtil;
22
-use Symfony\Component\Finder\Finder;
23 22
 use Symfony\Component\Filesystem\Filesystem;
23
+use Symfony\Component\Finder\Finder;
24 24
 
25 25
 class SchemaService
26 26
 {
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,10 +17,10 @@
 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;
23 22
 use Symfony\Component\HttpFoundation\StreamedResponse;
23
+use Symfony\Component\Routing\Annotation\Route;
24 24
 
25 25
 class LogController extends AbstractController
26 26
 {
Please login to merge, or discard this patch.
src/Eccube/Form/Type/Admin/SearchOrderType.php 1 patch
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -13,18 +13,18 @@
 block discarded – undo
13 13
 
14 14
 namespace Eccube\Form\Type\Admin;
15 15
 
16
+use Eccube\Common\EccubeConfig;
16 17
 use Eccube\Entity\Shipping;
18
+use Eccube\Form\Type\Master\OrderStatusType;
19
+use Eccube\Form\Type\Master\PaymentType;
20
+use Eccube\Form\Type\PriceType;
17 21
 use Symfony\Component\Form\AbstractType;
18 22
 use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
19
-use Symfony\Component\Form\Extension\Core\Type\DateType;
20 23
 use Symfony\Component\Form\Extension\Core\Type\DateTimeType;
24
+use Symfony\Component\Form\Extension\Core\Type\DateType;
21 25
 use Symfony\Component\Form\Extension\Core\Type\TextType;
22 26
 use Symfony\Component\Form\FormBuilderInterface;
23 27
 use Symfony\Component\Validator\Constraints as Assert;
24
-use Eccube\Common\EccubeConfig;
25
-use Eccube\Form\Type\PriceType;
26
-use Eccube\Form\Type\Master\OrderStatusType;
27
-use Eccube\Form\Type\Master\PaymentType;
28 28
 
29 29
 class SearchOrderType extends AbstractType
30 30
 {
Please login to merge, or discard this patch.