Completed
Pull Request — experimental/3.1 (#2561)
by k-yamamura
222:41 queued 215:24
created
src/Eccube/Doctrine/Common/CsvDataFixtures/CsvFixture.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 Doctrine\Common\DataFixtures\FixtureInterface;
6 6
 use Doctrine\Common\Persistence\ObjectManager;
7 7
 use Doctrine\DBAL\Connection;
8
-use Doctrine\DBAL\Schema\Table;
9 8
 
10 9
 /**
11 10
  * CSVファイルを扱うためのフィクスチャ.
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Content/BlockController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,6 @@
 block discarded – undo
41 41
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
42 42
 use Symfony\Component\EventDispatcher\EventDispatcher;
43 43
 use Symfony\Component\Filesystem\Filesystem;
44
-use Symfony\Component\Finder\Finder;
45 44
 use Symfony\Component\Form\FormFactory;
46 45
 use Symfony\Component\HttpFoundation\Request;
47 46
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
Please login to merge, or discard this patch.
src/Eccube/Form/Type/AddCartType.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,6 @@
 block discarded – undo
26 26
 
27 27
 use Eccube\Annotation\FormType;
28 28
 use Eccube\Annotation\Inject;
29
-use Eccube\Application;
30 29
 use Symfony\Component\Form\AbstractType;
31 30
 use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
32 31
 use Symfony\Component\Form\Extension\Core\Type\HiddenType;
Please login to merge, or discard this patch.
src/Eccube/Service/CsvImportService.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@
 block discarded – undo
24 24
 namespace Eccube\Service;
25 25
 
26 26
 use Eccube\Annotation\Service;
27
-use Eccube\Application;
28 27
 
29 28
 
30 29
 /**
Please login to merge, or discard this patch.
src/Eccube/Service/OrderHelper.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use Doctrine\ORM\EntityManager;
7 7
 use Eccube\Annotation\Inject;
8 8
 use Eccube\Annotation\Service;
9
-use Eccube\Common\Constant;
10 9
 use Eccube\Entity\CartItem;
11 10
 use Eccube\Entity\Customer;
12 11
 use Eccube\Entity\CustomerAddress;
Please login to merge, or discard this patch.
src/Eccube/Repository/ProductRepository.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -25,12 +25,10 @@
 block discarded – undo
25 25
 namespace Eccube\Repository;
26 26
 
27 27
 use Doctrine\ORM\EntityManager;
28
-use Doctrine\ORM\NoResultException;
29 28
 use Eccube\Annotation\Inject;
30 29
 use Eccube\Annotation\Repository;
31 30
 use Eccube\Doctrine\Query\Queries;
32 31
 use Eccube\Util\Str;
33
-use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
34 32
 
35 33
 /**
36 34
  * ProductRepository
Please login to merge, or discard this patch.
src/Eccube/Service/Calculator/CalculateContext.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 use Eccube\Entity\Order;
5 5
 use Eccube\Entity\PurchaseInterface;
6 6
 use Eccube\Entity\OrderItem;
7
-use Eccube\Service\Calculator\Strategy\CalculateStrategyInterface;
8 7
 
9 8
 class CalculateContext
10 9
 {
Please login to merge, or discard this patch.
src/Eccube/Service/Calculator/Strategy/CalculateChargeStrategy.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -2,13 +2,9 @@
 block discarded – undo
2 2
 namespace Eccube\Service\Calculator\Strategy;
3 3
 
4 4
 use Eccube\Application;
5
-use Eccube\Entity\Master\OrderItemType;
6
-use Eccube\Entity\Master\TaxType;
7
-use Eccube\Entity\Master\TaxDisplayType;
8 5
 use Eccube\Entity\Order;
9 6
 use Eccube\Entity\PurchaseInterface;
10 7
 use Eccube\Entity\OrderItem;
11
-use Eccube\Entity\Shipping;
12 8
 use Eccube\Repository\Master\OrderItemTypeRepository;
13 9
 use Eccube\Service\Calculator\OrderItemCollection;
14 10
 
Please login to merge, or discard this patch.
src/Eccube/Service/Calculator/Strategy/CalculateTotalStrategy.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -2,14 +2,10 @@
 block discarded – undo
2 2
 namespace Eccube\Service\Calculator\Strategy;
3 3
 
4 4
 use Eccube\Application;
5
-use Eccube\Entity\Master\OrderItemType;
6
-use Eccube\Entity\Master\TaxType;
7
-use Eccube\Entity\Master\TaxDisplayType;
8 5
 use Eccube\Entity\Cart;
9 6
 use Eccube\Entity\Order;
10 7
 use Eccube\Entity\PurchaseInterface;
11 8
 use Eccube\Entity\OrderItem;
12
-use Eccube\Entity\Shipping;
13 9
 use Eccube\Repository\Master\OrderItemTypeRepository;
14 10
 use Eccube\Service\Calculator\OrderItemCollection;
15 11
 
Please login to merge, or discard this patch.