Failed Conditions
Pull Request — experimental/3.1 (#2159)
by Kentaro
88:02
created
src/Eccube/Controller/ShoppingController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -1360,7 +1360,6 @@
 block discarded – undo
1360 1360
     /**
1361 1361
      * フォームの情報からお届け先のインデックスを返す
1362 1362
      *
1363
-     * @param Application $app
1364 1363
      * @param mixed $CustomerAddressData
1365 1364
      * @return int
1366 1365
      */
Please login to merge, or discard this patch.
src/Eccube/Command/GeneratorCommand/AbstractPluginGenerator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -348,7 +348,7 @@  discard block
 block discarded – undo
348 348
      * @param array $metadatas
349 349
      * @param array $fsList
350 350
      * @param $pluginCode
351
-     * @param $codePath
351
+     * @param string $codePath
352 352
      */
353 353
     protected function generateMigration(array $metadatas, array &$fsList = array(), $pluginCode, $codePath)
354 354
     {
@@ -373,7 +373,7 @@  discard block
 block discarded – undo
373 373
      *
374 374
      * @param $pluginCode
375 375
      * @param array $metadatas
376
-     * @return mixed|string
376
+     * @return string
377 377
      */
378 378
     protected function makeMigration($pluginCode, array $metadatas)
379 379
     {
Please login to merge, or discard this patch.
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
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
     }
232 232
 
233 233
     /**
234
-     * @param  \Eccube\Entity\ProductClass|integer $ProductClass
234
+     * @param  string $ProductClass
235 235
      * @param  integer $quantity
236 236
      * @return \Eccube\Service\CartService
237 237
      * @throws CartException
@@ -645,7 +645,7 @@  discard block
 block discarded – undo
645 645
      * 在庫数と販売制限数ともに個数が超えていれば、少ない方を適用させてメッセージを表示する
646 646
      *
647 647
      * @param ProductClass $ProductClass
648
-     * @param $productName
648
+     * @param string $productName
649 649
      * @param $quantity
650 650
      * @return int チェック後に更新した個数
651 651
      */
Please login to merge, or discard this patch.