Failed Conditions
Pull Request — experimental/3.1 (#2268)
by chihiro
68:29 queued 15:11
created
src/Eccube/Application.php 2 patches
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -31,8 +31,6 @@  discard block
 block discarded – undo
31 31
 use Eccube\Common\Constant;
32 32
 use Eccube\Doctrine\DBAL\Types\UTCDateTimeType;
33 33
 use Eccube\Doctrine\ORM\Mapping\Driver\AnnotationDriver;
34
-use Eccube\Doctrine\ORM\Mapping\Driver\YamlDriver;
35
-use Eccube\EventListener\TransactionListener;
36 34
 use Eccube\Plugin\ConfigManager as PluginConfigManager;
37 35
 use Eccube\Routing\EccubeRouter;
38 36
 use Eccube\ServiceProvider\MobileDetectServiceProvider;
@@ -43,13 +41,11 @@  discard block
 block discarded – undo
43 41
 use Sergiors\Silex\Provider\TemplatingServiceProvider;
44 42
 use Sergiors\Silex\Routing\ChainUrlGenerator;
45 43
 use Sergiors\Silex\Routing\ChainUrlMatcher;
46
-use Symfony\Component\EventDispatcher\EventDispatcher;
47 44
 use Symfony\Component\Finder\Finder;
48 45
 use Symfony\Component\HttpFoundation\Request;
49 46
 use Symfony\Component\HttpFoundation\Response;
50 47
 use Symfony\Component\HttpKernel\Event\FilterResponseEvent;
51 48
 use Symfony\Component\HttpKernel\Event\GetResponseEvent;
52
-use Symfony\Component\HttpKernel\Event\PostResponseEvent;
53 49
 use Symfony\Component\HttpKernel\KernelEvents;
54 50
 use Symfony\Component\Yaml\Yaml;
55 51
 
Please login to merge, or discard this patch.
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -543,13 +543,13 @@
 block discarded – undo
543 543
         $pluginConfigs = PluginConfigManager::getPluginConfigAll($this['debug']);
544 544
         $ormMappings = array();
545 545
         $ormMappings[] = array(
546
-             'type' => 'annotation',
547
-             'namespace' => 'Eccube\Entity',
548
-             'path' => array(
549
-                 __DIR__.'/Entity'
550
-             ),
551
-             'use_simple_annotation_reader' => false,
552
-         );
546
+                'type' => 'annotation',
547
+                'namespace' => 'Eccube\Entity',
548
+                'path' => array(
549
+                    __DIR__.'/Entity'
550
+                ),
551
+                'use_simple_annotation_reader' => false,
552
+            );
553 553
 
554 554
         // TODO namespace は暫定
555 555
         $ormMappings[] = array(
Please login to merge, or discard this patch.