Completed
Branch modify-scrutinizeryml (c70e79)
by Kentaro
39:02
created
src/Eccube/Doctrine/ORM/Tools/Pagination/LimitSubqueryOutputWalker.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,6 @@
 block discarded – undo
22 22
 use Doctrine\ORM\Query\AST\PartialObjectExpression;
23 23
 use Doctrine\ORM\Query\AST\SelectExpression;
24 24
 use Doctrine\ORM\Query\AST\SelectStatement;
25
-use Doctrine\ORM\Query\Expr\OrderBy;
26
-use Doctrine\ORM\Query\Expr\Select;
27 25
 use Doctrine\ORM\Query\SqlWalker;
28 26
 
29 27
 /**
Please login to merge, or discard this patch.
src/Eccube/Service/PluginService.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,6 @@
 block discarded – undo
33 33
 use Eccube\Entity\Plugin;
34 34
 use Eccube\Entity\PluginEventHandler;
35 35
 use Eccube\Exception\PluginException;
36
-use Eccube\Plugin\ConfigManager;
37 36
 use Eccube\Plugin\ConfigManager as PluginConfigManager;
38 37
 use Eccube\Repository\PluginEventHandlerRepository;
39 38
 use Eccube\Repository\PluginRepository;
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/AdminController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@
 block discarded – undo
14 14
 namespace Eccube\Controller\Admin;
15 15
 
16 16
 use Doctrine\ORM\NoResultException;
17
-use Doctrine\ORM\Query\ResultSetMapping;
18 17
 use Doctrine\ORM\QueryBuilder;
18
+use Doctrine\ORM\Query\ResultSetMapping;
19 19
 use Eccube\Controller\AbstractController;
20 20
 use Eccube\Entity\Master\OrderStatus;
21 21
 use Eccube\Entity\ProductStock;
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Content/FileController.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,22 +14,22 @@
 block discarded – undo
14 14
 namespace Eccube\Controller\Admin\Content;
15 15
 
16 16
 use Eccube\Controller\AbstractController;
17
+use Eccube\Util\FilesystemUtil;
18
+use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
17 19
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
18 20
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
19
-use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
21
+use Symfony\Component\Filesystem\Exception\IOException;
20 22
 use Symfony\Component\Filesystem\Filesystem;
21 23
 use Symfony\Component\Finder\Finder;
22 24
 use Symfony\Component\Form\Extension\Core\Type\FileType;
23 25
 use Symfony\Component\Form\Extension\Core\Type\FormType;
24 26
 use Symfony\Component\Form\Extension\Core\Type\TextType;
25 27
 use Symfony\Component\HttpFoundation\BinaryFileResponse;
28
+use Symfony\Component\HttpFoundation\File\Exception\FileException;
26 29
 use Symfony\Component\HttpFoundation\Request;
27 30
 use Symfony\Component\HttpFoundation\ResponseHeaderBag;
28 31
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
29
-use Symfony\Component\HttpFoundation\File\Exception\FileException;
30 32
 use Symfony\Component\Validator\Constraints as Assert;
31
-use Eccube\Util\FilesystemUtil;
32
-use Symfony\Component\Filesystem\Exception\IOException;
33 33
 
34 34
 class FileController extends AbstractController
35 35
 {
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Content/LayoutController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,12 +28,12 @@
 block discarded – undo
28 28
 use Symfony\Component\Form\Extension\Core\Type\FormType;
29 29
 use Symfony\Component\Form\Extension\Core\Type\TextType;
30 30
 use Symfony\Component\HttpFoundation\JsonResponse;
31
+use Symfony\Component\HttpFoundation\RedirectResponse;
31 32
 use Symfony\Component\HttpFoundation\Request;
32 33
 use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
33 34
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
34 35
 use Symfony\Component\Validator\Constraints\NotBlank;
35 36
 use Twig\Environment as Twig;
36
-use Symfony\Component\HttpFoundation\RedirectResponse;
37 37
 
38 38
 // todo プレビュー実装
39 39
 class LayoutController extends AbstractController
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Content/PageController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
 use Eccube\Event\EventArgs;
22 22
 use Eccube\Form\Type\Admin\MainEditType;
23 23
 use Eccube\Repository\Master\DeviceTypeRepository;
24
-use Eccube\Repository\PageRepository;
25 24
 use Eccube\Repository\PageLayoutRepository;
25
+use Eccube\Repository\PageRepository;
26 26
 use Eccube\Util\StringUtil;
27 27
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
28 28
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Customer/CustomerController.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\HttpFoundation\Request;
37 37
 use Symfony\Component\HttpFoundation\StreamedResponse;
38 38
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
39
-use Symfony\Component\Translation\TranslatorInterface;
40 39
 use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
40
+use Symfony\Component\Translation\TranslatorInterface;
41 41
 
42 42
 class CustomerController extends AbstractController
43 43
 {
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Order/OrderController.php 1 patch
Unused Use Statements   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -17,6 +17,8 @@  discard block
 block discarded – undo
17 17
 use Eccube\Controller\AbstractController;
18 18
 use Eccube\Entity\Csv;
19 19
 use Eccube\Entity\Master\CsvType;
20
+use Eccube\Entity\Master\OrderStatus;
21
+use Eccube\Entity\Order;
20 22
 use Eccube\Entity\OrderItem;
21 23
 use Eccube\Entity\Shipping;
22 24
 use Eccube\Event\EccubeEvents;
@@ -30,19 +32,17 @@  discard block
 block discarded – undo
30 32
 use Eccube\Repository\OrderRepository;
31 33
 use Eccube\Repository\PaymentRepository;
32 34
 use Eccube\Service\CsvExportService;
35
+use Eccube\Service\PurchaseFlow\PurchaseContext;
36
+use Eccube\Service\PurchaseFlow\PurchaseException;
37
+use Eccube\Service\PurchaseFlow\PurchaseFlow;
33 38
 use Eccube\Util\FormUtil;
34 39
 use Knp\Component\Pager\PaginatorInterface;
35 40
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
36 41
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
37 42
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
43
+use Symfony\Component\HttpFoundation\RedirectResponse;
38 44
 use Symfony\Component\HttpFoundation\Request;
39 45
 use Symfony\Component\HttpFoundation\StreamedResponse;
40
-use Eccube\Entity\Master\OrderStatus;
41
-use Symfony\Component\HttpFoundation\RedirectResponse;
42
-use Eccube\Entity\Order;
43
-use Eccube\Service\PurchaseFlow\PurchaseContext;
44
-use Eccube\Service\PurchaseFlow\PurchaseFlow;
45
-use Eccube\Service\PurchaseFlow\PurchaseException;
46 46
 
47 47
 class OrderController extends AbstractController
48 48
 {
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Product/ClassCategoryController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,9 +20,9 @@
 block discarded – undo
20 20
 use Eccube\Repository\ClassCategoryRepository;
21 21
 use Eccube\Repository\ClassNameRepository;
22 22
 use Eccube\Repository\ProductClassRepository;
23
+use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
23 24
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
24 25
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
25
-use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
26 26
 use Symfony\Component\HttpFoundation\Request;
27 27
 use Symfony\Component\HttpFoundation\Response;
28 28
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
Please login to merge, or discard this patch.