Failed Conditions
Push — 3.0.9-dev ( 720aa2...3dd81f )
by k-yamamura
60:00 queued 32:44
created
src/Eccube/Controller/Install/InstallController.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -250,6 +250,9 @@
 block discarded – undo
250 250
     }
251 251
 
252 252
 
253
+    /**
254
+     * @param InstallApplication $app
255
+     */
253 256
     private function checkModules($app)
254 257
     {
255 258
         foreach ($this->required_modules as $module) {
Please login to merge, or discard this patch.
Spacing   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -60,9 +60,9 @@  discard block
 block discarded – undo
60 60
 
61 61
     public function __construct()
62 62
     {
63
-        $this->config_path = __DIR__ . '/../../../../app/config/eccube';
64
-        $this->dist_path = __DIR__ . '/../../Resource/config';
65
-        $this->cache_path = __DIR__ . '/../../../../app/cache';
63
+        $this->config_path = __DIR__.'/../../../../app/config/eccube';
64
+        $this->dist_path = __DIR__.'/../../Resource/config';
65
+        $this->cache_path = __DIR__.'/../../../../app/cache';
66 66
     }
67 67
 
68 68
     private function isValid(Request $request, Form $form)
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 
148 148
         if (empty($sessionData['shop_name'])) {
149 149
 
150
-            $config_file = $this->config_path . '/config.yml';
150
+            $config_file = $this->config_path.'/config.yml';
151 151
             $fs = new Filesystem();
152 152
 
153 153
             if ($fs->exists($config_file)) {
@@ -161,21 +161,21 @@  discard block
 block discarded – undo
161 161
                 }
162 162
 
163 163
                 // セキュリティの設定
164
-                $config_file = $this->config_path . '/path.yml';
164
+                $config_file = $this->config_path.'/path.yml';
165 165
                 $config = Yaml::parse(file_get_contents($config_file));
166 166
                 $sessionData['admin_dir'] = $config['admin_route'];
167 167
 
168
-                $config_file = $this->config_path . '/config.yml';
168
+                $config_file = $this->config_path.'/config.yml';
169 169
                 $config = Yaml::parse(file_get_contents($config_file));
170 170
 
171 171
                 $allowHost = $config['admin_allow_host'];
172 172
                 if (count($allowHost) > 0) {
173 173
                     $sessionData['admin_allow_hosts'] = Str::convertLineFeed(implode("\n", $allowHost));
174 174
                 }
175
-                $sessionData['admin_force_ssl'] = (bool)$config['force_ssl'];
175
+                $sessionData['admin_force_ssl'] = (bool) $config['force_ssl'];
176 176
 
177 177
                 // メール設定
178
-                $config_file = $this->config_path . '/mail.yml';
178
+                $config_file = $this->config_path.'/mail.yml';
179 179
                 $config = Yaml::parse(file_get_contents($config_file));
180 180
                 $mail = $config['mail'];
181 181
                 $sessionData['mail_backend'] = $mail['transport'];
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
                 $host = $request->getSchemeAndHttpHost();
286 286
                 $basePath = $request->getBasePath();
287 287
                 $params = array(
288
-                    'http_url' => $host . $basePath,
288
+                    'http_url' => $host.$basePath,
289 289
                     'shop_name' => $sessionData['shop_name'],
290 290
                 );
291 291
 
@@ -306,13 +306,13 @@  discard block
 block discarded – undo
306 306
     //    インストール完了
307 307
     public function complete(InstallApplication $app, Request $request)
308 308
     {
309
-        $config_file = $this->config_path . '/path.yml';
309
+        $config_file = $this->config_path.'/path.yml';
310 310
         $config = Yaml::parse(file_get_contents($config_file));
311 311
 
312 312
         $host = $request->getSchemeAndHttpHost();
313 313
         $basePath = $request->getBasePath();
314 314
 
315
-        $adminUrl = $host . $basePath . '/' . $config['admin_dir'];
315
+        $adminUrl = $host.$basePath.'/'.$config['admin_dir'];
316 316
 
317 317
         return $app['twig']->render('complete.twig', array(
318 318
             'admin_url' => $adminUrl,
@@ -332,17 +332,17 @@  discard block
 block discarded – undo
332 332
     {
333 333
         foreach ($this->required_modules as $module) {
334 334
             if (!extension_loaded($module)) {
335
-                $app->addDanger('[必須] ' . $module . ' 拡張モジュールが有効になっていません。', 'install');
335
+                $app->addDanger('[必須] '.$module.' 拡張モジュールが有効になっていません。', 'install');
336 336
             }
337 337
         }
338 338
 
339 339
         if (!extension_loaded('pdo_mysql') && !extension_loaded('pdo_pgsql')) {
340
-            $app->addDanger('[必須] ' . 'pdo_pgsql又はpdo_mysql 拡張モジュールを有効にしてください。', 'install');
340
+            $app->addDanger('[必須] '.'pdo_pgsql又はpdo_mysql 拡張モジュールを有効にしてください。', 'install');
341 341
         }
342 342
 
343 343
         foreach ($this->recommended_module as $module) {
344 344
             if (!extension_loaded($module)) {
345
-                $app->addWarning('[推奨] ' . $module . ' 拡張モジュールが有効になっていません。', 'install');
345
+                $app->addWarning('[推奨] '.$module.' 拡張モジュールが有効になっていません。', 'install');
346 346
             }
347 347
         }
348 348
 
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
             if (!function_exists('apache_get_modules')) {
361 361
                 $app->addWarning('mod_rewrite が有効になっているか不明です。', 'install');
362 362
             } elseif (!in_array('mod_rewrite', apache_get_modules())) {
363
-                $app->addDanger('[必須] ' . 'mod_rewriteを有効にしてください。', 'install');
363
+                $app->addDanger('[必須] '.'mod_rewriteを有効にしてください。', 'install');
364 364
             }
365 365
         } elseif (isset($_SERVER['SERVER_SOFTWARE']) && strpos('Microsoft-IIS', $_SERVER['SERVER_SOFTWARE']) !== false) {
366 366
             // iis
@@ -371,7 +371,7 @@  discard block
 block discarded – undo
371 371
 
372 372
     private function setPDO()
373 373
     {
374
-        $config_file = $this->config_path . '/database.yml';
374
+        $config_file = $this->config_path.'/database.yml';
375 375
         $config = Yaml::parse(file_get_contents($config_file));
376 376
 
377 377
         try {
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
      */
407 407
     private function getEntityManager()
408 408
     {
409
-        $config_file = $this->config_path . '/database.yml';
409
+        $config_file = $this->config_path.'/database.yml';
410 410
         $database = Yaml::parse(file_get_contents($config_file));
411 411
 
412 412
         $this->app->register(new \Silex\Provider\DoctrineServiceProvider(), array(
@@ -414,15 +414,15 @@  discard block
 block discarded – undo
414 414
         ));
415 415
 
416 416
         $this->app->register(new \Dflydev\Silex\Provider\DoctrineOrm\DoctrineOrmServiceProvider(), array(
417
-            'orm.proxies_dir' => __DIR__ . '/../../app/cache/doctrine',
417
+            'orm.proxies_dir' => __DIR__.'/../../app/cache/doctrine',
418 418
             'orm.em.options' => array(
419 419
                 'mappings' => array(
420 420
                     array(
421 421
                         'type' => 'yml',
422 422
                         'namespace' => 'Eccube\Entity',
423 423
                         'path' => array(
424
-                            __DIR__ . '/../../Resource/doctrine',
425
-                            __DIR__ . '/../../Resource/doctrine/master',
424
+                            __DIR__.'/../../Resource/doctrine',
425
+                            __DIR__.'/../../Resource/doctrine/master',
426 426
                         ),
427 427
                     ),
428 428
 
@@ -450,11 +450,11 @@  discard block
 block discarded – undo
450 450
     {
451 451
         $this->resetNatTimer();
452 452
 
453
-        $config_file = $this->config_path . '/database.yml';
453
+        $config_file = $this->config_path.'/database.yml';
454 454
         $database = Yaml::parse(file_get_contents($config_file));
455 455
         $config['database'] = $database['database'];
456 456
 
457
-        $config_file = $this->config_path . '/config.yml';
457
+        $config_file = $this->config_path.'/config.yml';
458 458
         $baseConfig = Yaml::parse(file_get_contents($config_file));
459 459
         $config['config'] = $baseConfig;
460 460
 
@@ -510,11 +510,11 @@  discard block
 block discarded – undo
510 510
     {
511 511
         $this->resetNatTimer();
512 512
 
513
-        $config_file = $this->config_path . '/database.yml';
513
+        $config_file = $this->config_path.'/database.yml';
514 514
         $database = Yaml::parse(file_get_contents($config_file));
515 515
         $config['database'] = $database['database'];
516 516
 
517
-        $config_file = $this->config_path . '/config.yml';
517
+        $config_file = $this->config_path.'/config.yml';
518 518
         $baseConfig = Yaml::parse(file_get_contents($config_file));
519 519
         $config['config'] = $baseConfig;
520 520
 
@@ -579,7 +579,7 @@  discard block
 block discarded – undo
579 579
         $config = new Configuration($app['db']);
580 580
         $config->setMigrationsNamespace('DoctrineMigrations');
581 581
 
582
-        $migrationDir = __DIR__ . '/../../Resource/doctrine/migration';
582
+        $migrationDir = __DIR__.'/../../Resource/doctrine/migration';
583 583
         $config->setMigrationsDirectory($migrationDir);
584 584
         $config->registerMigrationsFromDirectory($migrationDir);
585 585
 
@@ -610,7 +610,7 @@  discard block
 block discarded – undo
610 610
     private function getProtectedDirs()
611 611
     {
612 612
         $protectedDirs = array();
613
-        $base = __DIR__ . '/../../../..';
613
+        $base = __DIR__.'/../../../..';
614 614
         $dirs = array(
615 615
             '/html',
616 616
             '/app',
@@ -623,7 +623,7 @@  discard block
 block discarded – undo
623 623
         );
624 624
 
625 625
         foreach ($dirs as $dir) {
626
-            if (!is_writable($base . $dir)) {
626
+            if (!is_writable($base.$dir)) {
627 627
                 $protectedDirs[] = $dir;
628 628
             }
629 629
         }
@@ -634,7 +634,7 @@  discard block
 block discarded – undo
634 634
     private function createConfigYamlFile($data, $auth = true)
635 635
     {
636 636
         $fs = new Filesystem();
637
-        $config_file = $this->config_path . '/config.yml';
637
+        $config_file = $this->config_path.'/config.yml';
638 638
 
639 639
         if ($fs->exists($config_file)) {
640 640
             $config = Yaml::parse(file_get_contents($config_file));
@@ -665,7 +665,7 @@  discard block
 block discarded – undo
665 665
         $content = str_replace(
666 666
             $target,
667 667
             $replace,
668
-            file_get_contents($this->dist_path . '/config.yml.dist')
668
+            file_get_contents($this->dist_path.'/config.yml.dist')
669 669
         );
670 670
         $fs->dumpFile($config_file, $content);
671 671
 
@@ -679,7 +679,7 @@  discard block
 block discarded – undo
679 679
 
680 680
     private function addInstallStatus()
681 681
     {
682
-        $config_file = $this->config_path . '/config.yml';
682
+        $config_file = $this->config_path.'/config.yml';
683 683
         $config = Yaml::parse(file_get_contents($config_file));
684 684
         $config['eccube_install'] = 1;
685 685
         $yml = Yaml::dump($config);
@@ -691,7 +691,7 @@  discard block
 block discarded – undo
691 691
     private function createDatabaseYamlFile($data)
692 692
     {
693 693
         $fs = new Filesystem();
694
-        $config_file = $this->config_path . '/database.yml';
694
+        $config_file = $this->config_path.'/database.yml';
695 695
         if ($fs->exists($config_file)) {
696 696
             $fs->remove($config_file);
697 697
         }
@@ -725,7 +725,7 @@  discard block
 block discarded – undo
725 725
             $content = str_replace(
726 726
                 $target,
727 727
                 $replace,
728
-                file_get_contents($this->dist_path . '/database.yml.dist')
728
+                file_get_contents($this->dist_path.'/database.yml.dist')
729 729
             );
730 730
 
731 731
         } else {
@@ -744,7 +744,7 @@  discard block
 block discarded – undo
744 744
     private function createMailYamlFile($data)
745 745
     {
746 746
         $fs = new Filesystem();
747
-        $config_file = $this->config_path . '/mail.yml';
747
+        $config_file = $this->config_path.'/mail.yml';
748 748
         if ($fs->exists($config_file)) {
749 749
             $fs->remove($config_file);
750 750
         }
@@ -761,7 +761,7 @@  discard block
 block discarded – undo
761 761
         $content = str_replace(
762 762
             $target,
763 763
             $replace,
764
-            file_get_contents($this->dist_path . '/mail.yml.dist')
764
+            file_get_contents($this->dist_path.'/mail.yml.dist')
765 765
         );
766 766
         $fs->dumpFile($config_file, $content);
767 767
 
@@ -771,7 +771,7 @@  discard block
 block discarded – undo
771 771
     private function createPathYamlFile($data, Request $request)
772 772
     {
773 773
         $fs = new Filesystem();
774
-        $config_file = $this->config_path . '/path.yml';
774
+        $config_file = $this->config_path.'/path.yml';
775 775
         if ($fs->exists($config_file)) {
776 776
             $fs->remove($config_file);
777 777
         }
@@ -779,7 +779,7 @@  discard block
 block discarded – undo
779 779
         $ADMIN_ROUTE = $data['admin_dir'];
780 780
         $TEMPLATE_CODE = 'default';
781 781
         $USER_DATA_ROUTE = 'user_data';
782
-        $ROOT_DIR = realpath(__DIR__ . '/../../../../');
782
+        $ROOT_DIR = realpath(__DIR__.'/../../../../');
783 783
         $ROOT_URLPATH = $request->getBasePath();
784 784
 
785 785
         $target = array('${ADMIN_ROUTE}', '${TEMPLATE_CODE}', '${USER_DATA_ROUTE}', '${ROOT_DIR}', '${ROOT_URLPATH}');
@@ -789,7 +789,7 @@  discard block
 block discarded – undo
789 789
         $content = str_replace(
790 790
             $target,
791 791
             $replace,
792
-            file_get_contents($this->dist_path . '/path.yml.dist')
792
+            file_get_contents($this->dist_path.'/path.yml.dist')
793 793
         );
794 794
         $fs->dumpFile($config_file, $content);
795 795
 
@@ -798,7 +798,7 @@  discard block
 block discarded – undo
798 798
 
799 799
     private function sendAppData($params)
800 800
     {
801
-        $config_file = $this->config_path . '/database.yml';
801
+        $config_file = $this->config_path.'/database.yml';
802 802
         $db_config = Yaml::parse(file_get_contents($config_file));
803 803
 
804 804
         $this->setPDO();
@@ -810,7 +810,7 @@  discard block
 block discarded – undo
810 810
         }
811 811
 
812 812
         if ($db_config['database']['driver'] === 'pdo_mysql') {
813
-            $db_ver = 'MySQL:' . $version;
813
+            $db_ver = 'MySQL:'.$version;
814 814
         } else {
815 815
             $db_ver = $version;
816 816
         }
@@ -828,7 +828,7 @@  discard block
 block discarded – undo
828 828
 
829 829
         $header = array(
830 830
             'Content-Type: application/x-www-form-urlencoded',
831
-            'Content-Length: ' . strlen($data),
831
+            'Content-Length: '.strlen($data),
832 832
         );
833 833
         $context = stream_context_create(
834 834
             array(
Please login to merge, or discard this patch.
src/Eccube/Controller/Mypage/MypageController.php 1 patch
Doc Comments   +5 added lines, -6 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      * @param Application $app
63 63
      * @param Request     $request
64 64
      *
65
-     * @return string
65
+     * @return \Symfony\Component\HttpFoundation\Response
66 66
      */
67 67
     public function index(Application $app, Request $request)
68 68
     {
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      * @param Application $app
90 90
      * @param Request     $request
91 91
      *
92
-     * @return string
92
+     * @return \Symfony\Component\HttpFoundation\Response
93 93
      */
94 94
     public function history(Application $app, Request $request, $id)
95 95
     {
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
      * @param Request     $request
119 119
      * @param id     $id
120 120
      *
121
-     * @return string
121
+     * @return \Symfony\Component\HttpFoundation\RedirectResponse
122 122
      */
123 123
     public function order(Application $app, Request $request, $id)
124 124
     {
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
      * @param Application $app
156 156
      * @param Request     $request
157 157
      *
158
-     * @return string
158
+     * @return \Symfony\Component\HttpFoundation\Response
159 159
      */
160 160
     public function favorite(Application $app, Request $request)
161 161
     {
@@ -182,9 +182,8 @@  discard block
 block discarded – undo
182 182
 
183 183
     /**
184 184
      * @param Application $app
185
-     * @param Request     $request
186 185
      *
187
-     * @return string
186
+     * @return \Symfony\Component\HttpFoundation\RedirectResponse
188 187
      */
189 188
     public function delete(Application $app, $id)
190 189
     {
Please login to merge, or discard this patch.
src/Eccube/Controller/ShoppingController.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -1188,6 +1188,7 @@
 block discarded – undo
1188 1188
 
1189 1189
     /**
1190 1190
      * 非会員でのお客様情報変更時の入力チェック
1191
+     * @param Application $app
1191 1192
      */
1192 1193
     private function customerValidation($app, $data) {
1193 1194
 
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
 
222 222
             $MailHistory = new MailHistory();
223 223
             $MailHistory
224
-                ->setSubject('[' . $app['eccube.repository.base_info']->get()->getShopName() . '] ' . $MailTemplate->getSubject())
224
+                ->setSubject('['.$app['eccube.repository.base_info']->get()->getShopName().'] '.$MailTemplate->getSubject())
225 225
                 ->setMailBody($body)
226 226
                 ->setMailTemplate($MailTemplate)
227 227
                 ->setSendDate(new \DateTime())
@@ -634,7 +634,7 @@  discard block
 block discarded – undo
634 634
                     ->setTel03($data['customer_tel03'])
635 635
                     ->setZip01($data['customer_zip01'])
636 636
                     ->setZip02($data['customer_zip02'])
637
-                    ->setZipCode($data['customer_zip01'] . $data['customer_zip02'])
637
+                    ->setZipCode($data['customer_zip01'].$data['customer_zip02'])
638 638
                     ->setPref($pref)
639 639
                     ->setAddr01($data['customer_addr01'])
640 640
                     ->setAddr02($data['customer_addr02'])
@@ -733,7 +733,7 @@  discard block
 block discarded – undo
733 733
                 ->setTel03($data['tel03'])
734 734
                 ->setZip01($data['zip01'])
735 735
                 ->setZip02($data['zip02'])
736
-                ->setZipCode($data['zip01'] . $data['zip02'])
736
+                ->setZipCode($data['zip01'].$data['zip02'])
737 737
                 ->setPref($data['pref'])
738 738
                 ->setAddr01($data['addr01'])
739 739
                 ->setAddr02($data['addr02']);
@@ -752,7 +752,7 @@  discard block
 block discarded – undo
752 752
                 ->setTel03($data['tel03'])
753 753
                 ->setZip01($data['zip01'])
754 754
                 ->setZip02($data['zip02'])
755
-                ->setZipCode($data['zip01'] . $data['zip02'])
755
+                ->setZipCode($data['zip01'].$data['zip02'])
756 756
                 ->setPref($data['pref'])
757 757
                 ->setAddr01($data['addr01'])
758 758
                 ->setAddr02($data['addr02'])
@@ -1070,7 +1070,7 @@  discard block
 block discarded – undo
1070 1070
 
1071 1071
         $errors[] = $app['validator']->validateValue($data['customer_name02'], array(
1072 1072
             new Assert\NotBlank(),
1073
-            new Assert\Length(array('max' => $app['config']['name_len'], )),
1073
+            new Assert\Length(array('max' => $app['config']['name_len'],)),
1074 1074
             new Assert\Regex(array('pattern' => '/^[^\s ]+$/u', 'message' => 'form.type.name.firstname.nothasspace'))
1075 1075
         ));
1076 1076
 
Please login to merge, or discard this patch.
src/Eccube/Form/DataTransformer/EntityToIdTransformer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
 
43 43
     /**
44 44
      * @param ObjectManager $om
45
-     * @param stging $className
45
+     * @param string $className
46 46
      */
47 47
     public function __construct(ObjectManager $om, $className)
48 48
     {
Please login to merge, or discard this patch.
src/Eccube/Form/Type/Admin/ShipmentItemType.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@
 block discarded – undo
36 36
 {
37 37
     protected $app;
38 38
 
39
+    /**
40
+     * @param \Silex\Application $app
41
+     */
39 42
     public function __construct($app)
40 43
     {
41 44
         $this->app = $app;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
                 )));
92 92
 
93 93
         $app = $this->app;
94
-        $builder->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) use ($app) {
94
+        $builder->addEventListener(FormEvents::PRE_SUBMIT, function(FormEvent $event) use ($app) {
95 95
             // モーダルからのPOST時に、金額等をセットする.
96 96
             if ('modal' === $app['request']->get('modal')) {
97 97
                 $data = $event->getData();
Please login to merge, or discard this patch.
src/Eccube/Form/Type/KanaType.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -25,9 +25,7 @@
 block discarded – undo
25 25
 
26 26
 use Symfony\Component\Form\AbstractType;
27 27
 use Symfony\Component\Form\FormBuilderInterface;
28
-use Symfony\Component\Form\FormEvents;
29 28
 use Symfony\Component\Validator\Constraints as Assert;
30
-use Symfony\Component\OptionsResolver\Options;
31 29
 use Symfony\Component\OptionsResolver\OptionsResolver;
32 30
 
33 31
 /**
Please login to merge, or discard this patch.
src/Eccube/Repository/MemberRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@
 block discarded – undo
130 130
     /**
131 131
      * @param  \Eccube\Entity\Member $Member
132 132
      *
133
-     * @return void
133
+     * @return boolean
134 134
      */
135 135
     public function up(\Eccube\Entity\Member $Member)
136 136
     {
Please login to merge, or discard this patch.
src/Eccube/Repository/TaxRuleRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
      * @param  int|null|\Eccube\Entity\ProductClass   $ProductClass 商品規格
66 66
      * @param  int|null|\Eccube\Entity\Master\Pref    $Pref         都道府県
67 67
      * @param  int|null|\Eccube\Entity\Master\Country $Country      国
68
-     * @return \Eccube\Entity\TaxRule                 税設定情報
68
+     * @return integer                 税設定情報
69 69
      *
70 70
      * @throws NoResultException
71 71
      */
Please login to merge, or discard this patch.
src/Eccube/Service/CartService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -201,7 +201,7 @@
 block discarded – undo
201 201
     }
202 202
 
203 203
     /**
204
-     * @param  \Eccube\Entity\ProductClass|integer $ProductClass
204
+     * @param  string $ProductClass
205 205
      * @param  integer $quantity
206 206
      * @return \Eccube\Service\CartService
207 207
      * @throws CartException
Please login to merge, or discard this patch.