Completed
Pull Request — experimental/3.1 (#1985)
by Kentaro
126:16 queued 119:19
created
src/Eccube/Form/Type/Admin/ChangePasswordType.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,6 @@
 block discarded – undo
27 27
 use Symfony\Component\Form\Extension\Core\Type\PasswordType;
28 28
 use Symfony\Component\Form\Extension\Core\Type\RepeatedType;
29 29
 use Symfony\Component\Form\FormBuilderInterface;
30
-use Symfony\Component\Form\FormError;
31
-use Symfony\Component\Form\FormEvents;
32 30
 use Symfony\Component\OptionsResolver\OptionsResolver;
33 31
 use Symfony\Component\Security\Core\Validator\Constraints\UserPassword;
34 32
 use Symfony\Component\Validator\Constraints as Assert;
Please login to merge, or discard this patch.
src/Eccube/Form/Type/Admin/SearchProductType.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,6 @@
 block discarded – undo
32 32
 use Symfony\Component\Form\Extension\Core\Type\HiddenType;
33 33
 use Symfony\Component\Form\Extension\Core\Type\TextType;
34 34
 use Symfony\Component\Form\FormBuilderInterface;
35
-use Symfony\Component\Validator\Constraints as Assert;
36 35
 
37 36
 class SearchProductType extends AbstractType
38 37
 {
Please login to merge, or discard this patch.
src/Eccube/Service/CsvExportService.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,6 @@
 block discarded – undo
27 27
 use Doctrine\Common\Collections\ArrayCollection;
28 28
 use Eccube\Common\Constant;
29 29
 use Eccube\Util\EntityUtil;
30
-use Symfony\Component\Form\FormFactory;
31 30
 use Symfony\Component\HttpFoundation\Request;
32 31
 
33 32
 class CsvExportService
Please login to merge, or discard this patch.
src/Eccube/Service/Payment/Method/EccubePaymentCreditCard.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Eccube\Service\Payment\Method;
4 4
 
5
-use Eccube\Service\Payment\PaymentMethod;
6 5
 use Eccube\Service\Payment\PaymentResult;
7 6
 use Symfony\Component\HttpFoundation\Request;
8 7
 use Symfony\Component\HttpKernel\HttpKernelInterface;
Please login to merge, or discard this patch.
app/Eccube/Controller/AController.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -2,14 +2,9 @@
 block discarded – undo
2 2
 namespace Eccube2\Controller;
3 3
 
4 4
 use Eccube\Application;
5
-use Symfony\Component\HttpFoundation\Response;
6 5
 use Symfony\Component\HttpFoundation\Request;
7
-use Symfony\Component\HttpFoundation\ParameterBag;
8 6
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
9
-use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
10
-use Sensio\Bundle\FrameworkExtraBundle\Configuration\Security;
11 7
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
12
-use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
13 8
 
14 9
 /**
15 10
  * @Route("/test")
Please login to merge, or discard this patch.
src/Eccube/Controller/ShoppingController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -43,9 +43,7 @@
 block discarded – undo
43 43
 use Symfony\Component\Validator\Constraints as Assert;
44 44
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
45 45
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
46
-use Sensio\Bundle\FrameworkExtraBundle\Configuration\Security;
47 46
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
48
-use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
49 47
 
50 48
 /**
51 49
  * @Route("/shopping")
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Store/TemplateController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,6 @@
 block discarded – undo
29 29
 use Eccube\Form\Type\Admin\TemplateType;
30 30
 use Eccube\Util\Str;
31 31
 use Symfony\Component\Filesystem\Filesystem;
32
-use Symfony\Component\Finder\Finder;
33 32
 use Symfony\Component\Form\Extension\Core\Type\HiddenType;
34 33
 use Symfony\Component\Form\FormError;
35 34
 use Symfony\Component\HttpFoundation\Request;
Please login to merge, or discard this patch.
src/Eccube/Service/PluginService.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,10 +26,9 @@
 block discarded – undo
26 26
 
27 27
 use Eccube\Common\Constant;
28 28
 use Eccube\Exception\PluginException;
29
-use Eccube\Plugin\ConfigManager;
29
+use Eccube\Plugin\ConfigManager as PluginConfigManager;
30 30
 use Eccube\Util\Cache;
31 31
 use Eccube\Util\Str;
32
-use Eccube\Plugin\ConfigManager as PluginConfigManager;
33 32
 use Symfony\Component\Filesystem\Filesystem;
34 33
 use Symfony\Component\Yaml\Yaml;
35 34
 
Please login to merge, or discard this patch.
src/Eccube/ServiceProvider/DebugServiceProvider.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -24,12 +24,10 @@
 block discarded – undo
24 24
 
25 25
 namespace Eccube\ServiceProvider;
26 26
 
27
-use Eccube\Common\Constant;
28 27
 use Eccube\DataCollector\EccubeDataCollector;
29 28
 use Silex\Application;
30 29
 use Silex\Api\BootableProviderInterface;
31 30
 use Symfony\Bridge\Twig\Extension\DumpExtension;
32
-use Symfony\Component\EventDispatcher\EventDispatcherInterface;
33 31
 use Symfony\Component\HttpKernel\DataCollector\DumpDataCollector;
34 32
 use Symfony\Component\HttpKernel\EventListener\DumpListener;
35 33
 use Symfony\Component\VarDumper\Cloner\VarCloner;
Please login to merge, or discard this patch.