Failed Conditions
Pull Request — experimental/3.1 (#2159)
by Kentaro
88:02
created
src/Eccube/Application.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -25,8 +25,6 @@  discard block
 block discarded – undo
25 25
 
26 26
 use Eccube\Application\ApplicationTrait;
27 27
 use Eccube\Common\Constant;
28
-use Eccube\Doctrine\ORM\Mapping\Driver\YamlDriver;
29
-use Eccube\EventListener\TransactionListener;
30 28
 use Eccube\Plugin\ConfigManager as PluginConfigManager;
31 29
 use Eccube\Routing\EccubeRouter;
32 30
 use Eccube\ServiceProvider\MobileDetectServiceProvider;
@@ -37,13 +35,11 @@  discard block
 block discarded – undo
37 35
 use Sergiors\Silex\Provider\TemplatingServiceProvider;
38 36
 use Sergiors\Silex\Routing\ChainUrlGenerator;
39 37
 use Sergiors\Silex\Routing\ChainUrlMatcher;
40
-use Symfony\Component\EventDispatcher\EventDispatcher;
41 38
 use Symfony\Component\Finder\Finder;
42 39
 use Symfony\Component\HttpFoundation\Request;
43 40
 use Symfony\Component\HttpFoundation\Response;
44 41
 use Symfony\Component\HttpKernel\Event\FilterResponseEvent;
45 42
 use Symfony\Component\HttpKernel\Event\GetResponseEvent;
46
-use Symfony\Component\HttpKernel\Event\PostResponseEvent;
47 43
 use Symfony\Component\HttpKernel\KernelEvents;
48 44
 use Symfony\Component\Yaml\Yaml;
49 45
 
Please login to merge, or discard this patch.
src/Eccube/Service/CartService.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -302,7 +302,7 @@
 block discarded – undo
302 302
         // 制限数チェック(在庫不足の場合は、処理の中でカート内商品を削除している)
303 303
         $quantity = $this->setProductLimit($ProductClass, $productName, $tmp_quantity);
304 304
 
305
-		// 新しい数量でカート内商品を登録する
305
+        // 新しい数量でカート内商品を登録する
306 306
         if (0 < $quantity) {
307 307
             $CartItem = new CartItem();
308 308
             $CartItem
Please login to merge, or discard this patch.