Failed Conditions
Pull Request — experimental/3.1 (#2526)
by Kentaro
40:11 queued 13:18
created
src/Eccube/Doctrine/ORM/Tools/Pagination/Paginator.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     /**
58 58
      * Constructor.
59 59
      *
60
-     * @param Query|QueryBuilder $query               A Doctrine ORM query or query builder.
60
+     * @param Query $query               A Doctrine ORM query or query builder.
61 61
      * @param boolean            $fetchJoinCollection Whether the query joins a collection (true by default).
62 62
      */
63 63
     public function __construct($query, $fetchJoinCollection = true)
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
         if ($this->count === null) {
122 122
             try {
123 123
                 $this->count = array_sum(array_map('current', $this->getCountQuery()->getScalarResult()));
124
-            } catch(NoResultException $e) {
124
+            } catch (NoResultException $e) {
125 125
                 $this->count = 0;
126 126
             }
127 127
         }
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
         /* @var $countQuery Query */
242 242
         $countQuery = $this->cloneQuery($this->query);
243 243
 
244
-        if ( ! $countQuery->hasHint(CountWalker::HINT_DISTINCT)) {
244
+        if (!$countQuery->hasHint(CountWalker::HINT_DISTINCT)) {
245 245
             $countQuery->setHint(CountWalker::HINT_DISTINCT, true);
246 246
         }
247 247
 
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
         foreach ($parameters as $key => $parameter) {
268 268
             $parameterName = $parameter->getName();
269 269
 
270
-            if( ! (isset($parameterMappings[$parameterName]) || array_key_exists($parameterName, $parameterMappings))) {
270
+            if (!(isset($parameterMappings[$parameterName]) || array_key_exists($parameterName, $parameterMappings))) {
271 271
                 unset($parameters[$key]);
272 272
             }
273 273
         }
Please login to merge, or discard this patch.
src/Eccube/Doctrine/ORM/Tools/Pagination/WhereInWalker.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
             $pathType = PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION;
90 90
         }
91 91
 
92
-        $pathExpression       = new PathExpression(PathExpression::TYPE_STATE_FIELD | PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION, $rootAlias, $identifierFieldName);
92
+        $pathExpression       = new PathExpression(PathExpression::TYPE_STATE_FIELD|PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION, $rootAlias, $identifierFieldName);
93 93
         $pathExpression->type = $pathType;
94 94
 
95 95
         $count = $this->_getQuery()->getHint(self::HINT_PAGINATOR_ID_COUNT);
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
                 array($pathExpression)
101 101
             );
102 102
             $expression = new InExpression($arithmeticExpression);
103
-            $expression->literals[] = new InputParameter(":" . self::PAGINATOR_ID_ALIAS);
103
+            $expression->literals[] = new InputParameter(":".self::PAGINATOR_ID_ALIAS);
104 104
 
105 105
         } else {
106 106
             $expression = new NullComparisonExpression($pathExpression);
Please login to merge, or discard this patch.
src/Eccube/Doctrine/ORM/Tools/Pagination/CountWalker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
         }
70 70
 
71 71
         $pathExpression = new PathExpression(
72
-            PathExpression::TYPE_STATE_FIELD | PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION, $rootAlias,
72
+            PathExpression::TYPE_STATE_FIELD|PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION, $rootAlias,
73 73
             $identifierFieldName
74 74
         );
75 75
         $pathExpression->type = $pathType;
Please login to merge, or discard this patch.
src/Eccube/Doctrine/ORM/Tools/Pagination/LimitSubqueryWalker.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
         );
94 94
 
95 95
         $pathExpression = new PathExpression(
96
-            PathExpression::TYPE_STATE_FIELD | PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION,
96
+            PathExpression::TYPE_STATE_FIELD|PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION,
97 97
             $rootAlias,
98 98
             $identifier
99 99
         );
@@ -104,13 +104,13 @@  discard block
 block discarded – undo
104 104
 
105 105
         if (isset($AST->orderByClause)) {
106 106
             foreach ($AST->orderByClause->orderByItems as $item) {
107
-                if ( ! $item->expression instanceof PathExpression) {
107
+                if (!$item->expression instanceof PathExpression) {
108 108
                     continue;
109 109
                 }
110 110
                 
111 111
                 $AST->selectClause->selectExpressions[] = new SelectExpression(
112 112
                     $this->createSelectExpressionItem($item->expression),
113
-                    '_dctrn_ord' . $this->_aliasCounter++
113
+                    '_dctrn_ord'.$this->_aliasCounter++
114 114
                 );
115 115
             }
116 116
         }
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
                     && isset($queryComponents[$expression->identificationVariable])) {
146 146
                     $queryComponent = $queryComponents[$expression->identificationVariable];
147 147
                     if (isset($queryComponent['parent'])
148
-                        && $queryComponent['relation']['type'] & ClassMetadataInfo::TO_MANY) {
148
+                        && $queryComponent['relation']['type']&ClassMetadataInfo::TO_MANY) {
149 149
                         throw new \RuntimeException("Cannot select distinct identifiers from query with LIMIT and ORDER BY on a column from a fetch joined to-many association. Use output walkers.");
150 150
                     }
151 151
                 }
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
 
21 21
 use Doctrine\DBAL\Types\Type;
22 22
 use Doctrine\ORM\Mapping\ClassMetadataInfo;
23
-use Doctrine\ORM\ORMException;
24 23
 use Doctrine\ORM\Query;
25 24
 use Doctrine\ORM\Query\AST\Functions\IdentityFunction;
26 25
 use Doctrine\ORM\Query\AST\PathExpression;
Please login to merge, or discard this patch.
src/Eccube/Doctrine/ORM/Tools/Pagination/RowNumberOverFunction.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,9 +44,9 @@
 block discarded – undo
44 44
      */
45 45
     public function getSql(\Doctrine\ORM\Query\SqlWalker $sqlWalker)
46 46
     {
47
-        return 'ROW_NUMBER() OVER(' . trim($sqlWalker->walkOrderByClause(
47
+        return 'ROW_NUMBER() OVER('.trim($sqlWalker->walkOrderByClause(
48 48
             $this->orderByClause
49
-        )) . ')';
49
+        )).')';
50 50
     }
51 51
 
52 52
     /**
Please login to merge, or discard this patch.
src/Eccube/Doctrine/ORM/Tools/Pagination/LimitSubqueryOutputWalker.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -209,8 +209,8 @@  discard block
 block discarded – undo
209 209
         $sqlIdentifier = $this->getSQLIdentifier($AST);
210 210
 
211 211
         if ($hasOrderBy) {
212
-            $orderGroupBy = ' GROUP BY ' . implode(', ', $sqlIdentifier);
213
-            $sqlIdentifier[] = 'MIN(' . $this->walkResultVariable('dctrn_rownum') . ') AS dctrn_minrownum';
212
+            $orderGroupBy = ' GROUP BY '.implode(', ', $sqlIdentifier);
213
+            $sqlIdentifier[] = 'MIN('.$this->walkResultVariable('dctrn_rownum').') AS dctrn_minrownum';
214 214
         }
215 215
 
216 216
         // Build the counter query
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
         );
222 222
 
223 223
         if ($hasOrderBy) {
224
-            $sql .= $orderGroupBy . $outerOrderBy;
224
+            $sql .= $orderGroupBy.$outerOrderBy;
225 225
         }
226 226
 
227 227
         // Apply the limit and offset.
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
     {
369 369
         // If the sql statement has an order by clause, we need to wrap it in a new select distinct
370 370
         // statement
371
-        if (! $orderByClause instanceof OrderByClause) {
371
+        if (!$orderByClause instanceof OrderByClause) {
372 372
             return $sql;
373 373
         }
374 374
 
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
             = array();
405 405
 
406 406
         // Generate DQL alias -> SQL table alias mapping
407
-        foreach(array_keys($this->rsm->aliasMap) as $dqlAlias) {
407
+        foreach (array_keys($this->rsm->aliasMap) as $dqlAlias) {
408 408
             $dqlAliasToClassMap[$dqlAlias] = $class = $this->queryComponents[$dqlAlias]['metadata'];
409 409
             $dqlAliasToSqlTableAliasMap[$dqlAlias] = $this->getSQLTableAlias($class->getTableName(), $dqlAlias);
410 410
         }
@@ -413,7 +413,7 @@  discard block
 block discarded – undo
413 413
         $fieldSearchPattern = '/(?<![a-z0-9_])%s\.%s(?![a-z0-9_])/i';
414 414
 
415 415
         // Generate search patterns for each field's path expression in the order by clause
416
-        foreach($this->rsm->fieldMappings as $fieldAlias => $fieldName) {
416
+        foreach ($this->rsm->fieldMappings as $fieldAlias => $fieldName) {
417 417
             $dqlAliasForFieldAlias = $this->rsm->columnOwnerMap[$fieldAlias];
418 418
             $class = $dqlAliasToClassMap[$dqlAliasForFieldAlias];
419 419
 
@@ -449,7 +449,7 @@  discard block
 block discarded – undo
449 449
             $replacements[] = $fieldAlias;
450 450
         }
451 451
 
452
-        foreach($orderByClause->orderByItems as $orderByItem) {
452
+        foreach ($orderByClause->orderByItems as $orderByItem) {
453 453
             // Walk order by item to get string representation of it
454 454
             $orderByItemString = $this->walkOrderByItem($orderByItem);
455 455
 
Please login to merge, or discard this patch.
Unused Use Statements   -9 removed lines patch added patch discarded remove patch
@@ -18,19 +18,10 @@
 block discarded – undo
18 18
 use Doctrine\DBAL\Platforms\PostgreSqlPlatform;
19 19
 use Doctrine\DBAL\Platforms\SQLAnywherePlatform;
20 20
 use Doctrine\DBAL\Platforms\SQLServerPlatform;
21
-use Doctrine\ORM\Query\AST\ArithmeticExpression;
22
-use Doctrine\ORM\Query\AST\ArithmeticFactor;
23
-use Doctrine\ORM\Query\AST\ArithmeticTerm;
24
-use Doctrine\ORM\Query\AST\Literal;
25 21
 use Doctrine\ORM\Query\AST\OrderByClause;
26
-use Doctrine\ORM\Query\AST\OrderByItem;
27 22
 use Doctrine\ORM\Query\AST\PartialObjectExpression;
28
-use Doctrine\ORM\Query\AST\PathExpression;
29 23
 use Doctrine\ORM\Query\AST\SelectExpression;
30 24
 use Doctrine\ORM\Query\AST\SelectStatement;
31
-use Doctrine\ORM\Query\AST\SimpleArithmeticExpression;
32
-use Doctrine\ORM\Query\Expr\OrderBy;
33
-use Doctrine\ORM\Query\Expr\Select;
34 25
 use Doctrine\ORM\Query\SqlWalker;
35 26
 
36 27
 /**
Please login to merge, or discard this patch.
src/Eccube/Command/ConfigCommand.php 1 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
 
94
-        $recursive = function ($config, $space = '    ') use (&$recursive, $output) {
94
+        $recursive = function($config, $space = '    ') use (&$recursive, $output) {
95 95
             foreach ($config as $key => $item) {
96 96
                 if (is_array($item)) {
97 97
                     $space = '    ';
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Product/ProductController.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -792,6 +792,7 @@
 block discarded – undo
792 792
      * ProductCategory作成
793 793
      * @param \Eccube\Entity\Product $Product
794 794
      * @param \Eccube\Entity\Category $Category
795
+     * @param integer $count
795 796
      * @return \Eccube\Entity\ProductCategory
796 797
      */
797 798
     private function createProductCategory($Product, $Category, $count)
Please login to merge, or discard this patch.
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
                     }
321 321
 
322 322
                     $extension = $image->getClientOriginalExtension();
323
-                    $filename = date('mdHis') . uniqid('_') . '.' . $extension;
323
+                    $filename = date('mdHis').uniqid('_').'.'.$extension;
324 324
                     $image->move($this->appConfig['image_temp_realdir'], $filename);
325 325
                     $files[] = $filename;
326 326
                 }
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
         $form = $builder->getForm();
400 400
 
401 401
         if (!$has_class) {
402
-            $ProductClass->setStockUnlimited((boolean)$ProductClass->getStockUnlimited());
402
+            $ProductClass->setStockUnlimited((boolean) $ProductClass->getStockUnlimited());
403 403
             $form['class']->setData($ProductClass);
404 404
         }
405 405
 
@@ -481,8 +481,8 @@  discard block
 block discarded – undo
481 481
                 $Categories = $form->get('Category')->getData();
482 482
                 $categoriesIdList = array();
483 483
                 foreach ($Categories as $Category) {
484
-                    foreach($Category->getPath() as $ParentCategory){
485
-                        if (!isset($categoriesIdList[$ParentCategory->getId()])){
484
+                    foreach ($Category->getPath() as $ParentCategory) {
485
+                        if (!isset($categoriesIdList[$ParentCategory->getId()])) {
486 486
                             $ProductCategory = $this->createProductCategory($Product, $ParentCategory, $count);
487 487
                             $this->entityManager->persist($ProductCategory);
488 488
                             $count++;
@@ -491,7 +491,7 @@  discard block
 block discarded – undo
491 491
                             $categoriesIdList[$ParentCategory->getId()] = true;
492 492
                         }
493 493
                     }
494
-                    if (!isset($categoriesIdList[$Category->getId()])){
494
+                    if (!isset($categoriesIdList[$Category->getId()])) {
495 495
                         $ProductCategory = $this->createProductCategory($Product, $Category, $count);
496 496
                         $this->entityManager->persist($ProductCategory);
497 497
                         $count++;
@@ -513,7 +513,7 @@  discard block
 block discarded – undo
513 513
                     $this->entityManager->persist($ProductImage);
514 514
 
515 515
                     // 移動
516
-                    $file = new File($this->appConfig['image_temp_realdir'] . '/' . $add_image);
516
+                    $file = new File($this->appConfig['image_temp_realdir'].'/'.$add_image);
517 517
                     $file->move($this->appConfig['image_save_realdir']);
518 518
                 }
519 519
 
@@ -533,7 +533,7 @@  discard block
 block discarded – undo
533 533
 
534 534
                     // 削除
535 535
                     $fs = new Filesystem();
536
-                    $fs->remove($this->appConfig['image_save_realdir'] . '/' . $delete_image);
536
+                    $fs->remove($this->appConfig['image_save_realdir'].'/'.$delete_image);
537 537
                 }
538 538
                 $this->entityManager->persist($Product);
539 539
                 $this->entityManager->flush();
@@ -668,7 +668,7 @@  discard block
 block discarded – undo
668 668
                     foreach ($deleteImages as $deleteImage) {
669 669
                         try {
670 670
                             $fs = new Filesystem();
671
-                            $fs->remove($this->appConfig['image_save_realdir'] . '/' . $deleteImage);
671
+                            $fs->remove($this->appConfig['image_save_realdir'].'/'.$deleteImage);
672 672
                         } catch (\Exception $e) {
673 673
                             // エラーが発生しても無視する
674 674
                         }
@@ -742,10 +742,10 @@  discard block
 block discarded – undo
742 742
 
743 743
                     // 画像ファイルを新規作成
744 744
                     $extension = pathinfo($Image->getFileName(), PATHINFO_EXTENSION);
745
-                    $filename = date('mdHis') . uniqid('_') . '.' . $extension;
745
+                    $filename = date('mdHis').uniqid('_').'.'.$extension;
746 746
                     try {
747 747
                         $fs = new Filesystem();
748
-                        $fs->copy($this->appConfig['image_save_realdir'] . '/' . $Image->getFileName(), $this->appConfig['image_save_realdir'] . '/' . $filename);
748
+                        $fs->copy($this->appConfig['image_save_realdir'].'/'.$Image->getFileName(), $this->appConfig['image_save_realdir'].'/'.$filename);
749 749
                     } catch (\Exception $e) {
750 750
                         // エラーが発生しても無視する
751 751
                     }
@@ -825,7 +825,7 @@  discard block
 block discarded – undo
825 825
         $em->getConfiguration()->setSQLLogger(null);
826 826
 
827 827
         $response = new StreamedResponse();
828
-        $response->setCallback(function () use ($app, $request) {
828
+        $response->setCallback(function() use ($app, $request) {
829 829
 
830 830
             // CSV種別を元に初期化.
831 831
             $this->csvExportService->initCsvType(CsvType::CSV_TYPE_PRODUCT);
@@ -865,7 +865,7 @@  discard block
 block discarded – undo
865 865
             // データ行の出力.
866 866
             $this->csvExportService->setExportQueryBuilder($qb);
867 867
 
868
-            $this->csvExportService->exportData(function ($entity, CsvExportService $csvService) use ($app, $request) {
868
+            $this->csvExportService->exportData(function($entity, CsvExportService $csvService) use ($app, $request) {
869 869
                 $Csvs = $csvService->getCsvs();
870 870
 
871 871
                 /** @var $Product \Eccube\Entity\Product */
@@ -908,9 +908,9 @@  discard block
 block discarded – undo
908 908
         });
909 909
 
910 910
         $now = new \DateTime();
911
-        $filename = 'product_' . $now->format('YmdHis') . '.csv';
911
+        $filename = 'product_'.$now->format('YmdHis').'.csv';
912 912
         $response->headers->set('Content-Type', 'application/octet-stream');
913
-        $response->headers->set('Content-Disposition', 'attachment; filename=' . $filename);
913
+        $response->headers->set('Content-Disposition', 'attachment; filename='.$filename);
914 914
         $response->send();
915 915
 
916 916
         log_info('商品CSV出力ファイル名', array($filename));
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Product/CsvImportController.php 3 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1155,11 +1155,11 @@
 block discarded – undo
1155 1155
     }
1156 1156
     
1157 1157
         /**
1158
-     * ProductCategory作成
1159
-     * @param \Eccube\Entity\Product $Product
1160
-     * @param \Eccube\Entity\Category $Category
1161
-     * @return ProductCategory
1162
-     */
1158
+         * ProductCategory作成
1159
+         * @param \Eccube\Entity\Product $Product
1160
+         * @param \Eccube\Entity\Category $Category
1161
+         * @return ProductCategory
1162
+         */
1163 1163
     private function makeProductCategory($Product, $Category, $rank)
1164 1164
     {
1165 1165
         $ProductCategory = new ProductCategory();
Please login to merge, or discard this patch.
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -679,6 +679,8 @@  discard block
 block discarded – undo
679 679
     /**
680 680
      * 登録、更新時のエラー画面表示
681 681
      *
682
+     * @param Application $app
683
+     * @param \Symfony\Component\Form\FormInterface $form
682 684
      */
683 685
     protected function render($app, $form, $headers)
684 686
     {
@@ -710,6 +712,7 @@  discard block
 block discarded – undo
710 712
      * アップロードされたCSVファイルの行ごとの処理
711 713
      *
712 714
      * @param $formFile
715
+     * @param Application $app
713 716
      * @return CsvImportService
714 717
      */
715 718
     protected function getImportData($app, $formFile)
@@ -787,6 +790,8 @@  discard block
 block discarded – undo
787 790
 
788 791
     /**
789 792
      * 商品カテゴリの削除、登録
793
+     * @param Application $app
794
+     * @param CsvImportService $data
790 795
      */
791 796
     protected function createProductCategory($row, Product $Product, $app, $data)
792 797
     {
@@ -886,6 +891,8 @@  discard block
 block discarded – undo
886 891
 
887 892
     /**
888 893
      * 商品規格分類1、商品規格分類2がnullとなる商品規格情報を作成
894
+     * @param Application $app
895
+     * @param CsvImportService $data
889 896
      */
890 897
     protected function createProductClass($row, Product $Product, $app, $data, $ClassCategory1 = null, $ClassCategory2 = null)
891 898
     {
@@ -1027,6 +1034,8 @@  discard block
 block discarded – undo
1027 1034
 
1028 1035
     /**
1029 1036
      * 商品規格情報を更新
1037
+     * @param Application $app
1038
+     * @param CsvImportService $data
1030 1039
      */
1031 1040
     protected function updateProductClass($row, Product $Product, ProductClass $ProductClass, $app, $data)
1032 1041
     {
@@ -1173,6 +1182,7 @@  discard block
 block discarded – undo
1173 1182
     /**
1174 1183
      * 登録、更新時のエラー画面表示
1175 1184
      *
1185
+     * @param string $message
1176 1186
      */
1177 1187
     protected function addErrors($message)
1178 1188
     {
@@ -1247,6 +1257,7 @@  discard block
 block discarded – undo
1247 1257
      * ProductCategory作成
1248 1258
      * @param \Eccube\Entity\Product $Product
1249 1259
      * @param \Eccube\Entity\Category $Category
1260
+     * @param integer $rank
1250 1261
      * @return ProductCategory
1251 1262
      */
1252 1263
     private function makeProductCategory($Product, $Category, $rank)
Please login to merge, or discard this patch.
Spacing   +74 added lines, -74 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
                     foreach ($data as $row) {
191 191
 
192 192
                         if ($headerSize != count($row)) {
193
-                            $this->addErrors(($data->key() + 1) . '行目のCSVフォーマットが一致しません。');
193
+                            $this->addErrors(($data->key() + 1).'行目のCSVフォーマットが一致しません。');
194 194
                             return $this->render($app, $form, $headers);
195 195
                         }
196 196
 
@@ -201,33 +201,33 @@  discard block
 block discarded – undo
201 201
                             if (preg_match('/^\d+$/', $row['商品ID'])) {
202 202
                                 $Product = $this->productRepository->find($row['商品ID']);
203 203
                                 if (!$Product) {
204
-                                    $this->addErrors(($data->key() + 1) . '行目の商品IDが存在しません。');
204
+                                    $this->addErrors(($data->key() + 1).'行目の商品IDが存在しません。');
205 205
                                     return $this->render($app, $form, $headers);
206 206
                                 }
207 207
                             } else {
208
-                                $this->addErrors(($data->key() + 1) . '行目の商品IDが存在しません。');
208
+                                $this->addErrors(($data->key() + 1).'行目の商品IDが存在しません。');
209 209
                                 return $this->render($app, $form, $headers);
210 210
                             }
211 211
 
212 212
                         }
213 213
 
214 214
                         if ($row['公開ステータス(ID)'] == '') {
215
-                            $this->addErrors(($data->key() + 1) . '行目の公開ステータス(ID)が設定されていません。');
215
+                            $this->addErrors(($data->key() + 1).'行目の公開ステータス(ID)が設定されていません。');
216 216
                         } else {
217 217
                             if (preg_match('/^\d+$/', $row['公開ステータス(ID)'])) {
218 218
                                 $ProductStatus = $this->productStatusRepository->find($row['公開ステータス(ID)']);
219 219
                                 if (!$ProductStatus) {
220
-                                    $this->addErrors(($data->key() + 1) . '行目の公開ステータス(ID)が存在しません。');
220
+                                    $this->addErrors(($data->key() + 1).'行目の公開ステータス(ID)が存在しません。');
221 221
                                 } else {
222 222
                                     $Product->setStatus($ProductStatus);
223 223
                                 }
224 224
                             } else {
225
-                                $this->addErrors(($data->key() + 1) . '行目の公開ステータス(ID)が存在しません。');
225
+                                $this->addErrors(($data->key() + 1).'行目の公開ステータス(ID)が存在しません。');
226 226
                             }
227 227
                         }
228 228
 
229 229
                         if (Str::isBlank($row['商品名'])) {
230
-                            $this->addErrors(($data->key() + 1) . '行目の商品名が設定されていません。');
230
+                            $this->addErrors(($data->key() + 1).'行目の商品名が設定されていません。');
231 231
                             return $this->render($app, $form, $headers);
232 232
                         } else {
233 233
                             $Product->setName(Str::trimAll($row['商品名']));
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
                                     if (preg_match('/^\d+$/', $deliveryFee) && $deliveryFee >= 0) {
287 287
                                         $ProductClassOrg->setDeliveryFee($deliveryFee);
288 288
                                     } else {
289
-                                        $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。');
289
+                                        $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。');
290 290
                                     }
291 291
                                 }
292 292
                             }
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
                             if ($row['規格分類1(ID)'] != '') {
295 295
 
296 296
                                 if ($row['規格分類1(ID)'] == $row['規格分類2(ID)']) {
297
-                                    $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。');
297
+                                    $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。');
298 298
                                 } else {
299 299
                                     // 商品規格あり
300 300
                                     // 企画分類あり商品を作成
@@ -309,30 +309,30 @@  discard block
 block discarded – undo
309 309
                                     if (preg_match('/^\d+$/', $row['規格分類1(ID)'])) {
310 310
                                         $ClassCategory1 = $this->classCategoryRepository->find($row['規格分類1(ID)']);
311 311
                                         if (!$ClassCategory1) {
312
-                                            $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
312
+                                            $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
313 313
                                         } else {
314 314
                                             $ProductClass->setClassCategory1($ClassCategory1);
315 315
                                         }
316 316
                                     } else {
317
-                                        $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
317
+                                        $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
318 318
                                     }
319 319
 
320 320
                                     if ($row['規格分類2(ID)'] != '') {
321 321
                                         if (preg_match('/^\d+$/', $row['規格分類2(ID)'])) {
322 322
                                             $ClassCategory2 = $this->classCategoryRepository->find($row['規格分類2(ID)']);
323 323
                                             if (!$ClassCategory2) {
324
-                                                $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。');
324
+                                                $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。');
325 325
                                             } else {
326 326
                                                 if ($ClassCategory1 &&
327 327
                                                     ($ClassCategory1->getClassName()->getId() == $ClassCategory2->getClassName()->getId())
328 328
                                                 ) {
329
-                                                    $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。');
329
+                                                    $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。');
330 330
                                                 } else {
331 331
                                                     $ProductClass->setClassCategory2($ClassCategory2);
332 332
                                                 }
333 333
                                             }
334 334
                                         } else {
335
-                                            $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。');
335
+                                            $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。');
336 336
                                         }
337 337
                                     }
338 338
                                     $ProductClass->setProductStock($ProductStock);
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
 
345 345
                             } else {
346 346
                                 if ($row['規格分類2(ID)'] != '') {
347
-                                    $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
347
+                                    $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
348 348
                                 }
349 349
                             }
350 350
 
@@ -372,7 +372,7 @@  discard block
 block discarded – undo
372 372
                                             if (preg_match('/^\d+$/', $deliveryFee) && $deliveryFee >= 0) {
373 373
                                                 $pc->setDeliveryFee($deliveryFee);
374 374
                                             } else {
375
-                                                $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。');
375
+                                                $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。');
376 376
                                             }
377 377
                                         }
378 378
                                     }
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
                                 }
395 395
 
396 396
                                 if ($row['規格分類1(ID)'] == $row['規格分類2(ID)']) {
397
-                                    $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。');
397
+                                    $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。');
398 398
                                 } else {
399 399
 
400 400
                                     // 必ず規格分類1がセットされている
@@ -403,36 +403,36 @@  discard block
 block discarded – undo
403 403
                                     if (preg_match('/^\d+$/', $classCategoryId1)) {
404 404
                                         $ClassCategory1 = $this->classCategoryRepository->find($classCategoryId1);
405 405
                                         if (!$ClassCategory1) {
406
-                                            $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
406
+                                            $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
407 407
                                         }
408 408
                                     } else {
409
-                                        $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
409
+                                        $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
410 410
                                     }
411 411
 
412 412
                                     $ClassCategory2 = null;
413 413
                                     if ($row['規格分類2(ID)'] != '') {
414 414
                                         if ($pc->getClassCategory1() != null && $pc->getClassCategory2() == null) {
415
-                                            $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)は設定できません。');
415
+                                            $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)は設定できません。');
416 416
                                         } else {
417 417
                                             if (preg_match('/^\d+$/', $classCategoryId2)) {
418 418
                                                 $ClassCategory2 = $this->classCategoryRepository->find($classCategoryId2);
419 419
                                                 if (!$ClassCategory2) {
420
-                                                    $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。');
420
+                                                    $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。');
421 421
                                                 } else {
422 422
                                                     if ($ClassCategory1 &&
423 423
                                                         ($ClassCategory1->getClassName()->getId() == $ClassCategory2->getClassName()->getId())
424 424
                                                     ) {
425
-                                                        $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。');
425
+                                                        $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。');
426 426
                                                     }
427 427
                                                 }
428 428
                                             } else {
429
-                                                $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。');
429
+                                                $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。');
430 430
                                             }
431 431
 
432 432
                                         }
433 433
                                     } else {
434 434
                                         if ($pc->getClassCategory1() != null && $pc->getClassCategory2() != null) {
435
-                                            $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)に値を設定してください。');
435
+                                            $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)に値を設定してください。');
436 436
                                         }
437 437
                                     }
438 438
                                     $ProductClass = $this->createProductClass($row, $Product, $app, $data, $ClassCategory1, $ClassCategory2);
@@ -443,7 +443,7 @@  discard block
 block discarded – undo
443 443
                                             if (preg_match('/^\d+$/', $deliveryFee) && $deliveryFee >= 0) {
444 444
                                                 $ProductClass->setDeliveryFee($deliveryFee);
445 445
                                             } else {
446
-                                                $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。');
446
+                                                $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。');
447 447
                                             }
448 448
                                         }
449 449
                                     }
@@ -533,7 +533,7 @@  discard block
 block discarded – undo
533 533
                     foreach ($data as $row) {
534 534
 
535 535
                         if ($headerSize != count($row)) {
536
-                            $this->addErrors(($data->key() + 1) . '行目のCSVフォーマットが一致しません。');
536
+                            $this->addErrors(($data->key() + 1).'行目のCSVフォーマットが一致しません。');
537 537
                             return $this->render($app, $form, $headers);
538 538
                         }
539 539
 
@@ -541,23 +541,23 @@  discard block
 block discarded – undo
541 541
                             $Category = new Category();
542 542
                         } else {
543 543
                             if (!preg_match('/^\d+$/', $row['カテゴリID'])) {
544
-                                $this->addErrors(($data->key() + 1) . '行目のカテゴリIDが存在しません。');
544
+                                $this->addErrors(($data->key() + 1).'行目のカテゴリIDが存在しません。');
545 545
                                 return $this->render($app, $form, $headers);
546 546
                             }
547 547
                             $Category = $this->categoryRepository->find($row['カテゴリID']);
548 548
                             if (!$Category) {
549
-                                $this->addErrors(($data->key() + 1) . '行目のカテゴリIDが存在しません。');
549
+                                $this->addErrors(($data->key() + 1).'行目のカテゴリIDが存在しません。');
550 550
                                 return $this->render($app, $form, $headers);
551 551
                             }
552 552
                             if ($row['カテゴリID'] == $row['親カテゴリID']) {
553
-                                $this->addErrors(($data->key() + 1) . '行目のカテゴリIDと親カテゴリIDが同じです。');
553
+                                $this->addErrors(($data->key() + 1).'行目のカテゴリIDと親カテゴリIDが同じです。');
554 554
                                 return $this->render($app, $form, $headers);
555 555
                             }
556 556
 
557 557
                         }
558 558
 
559 559
                         if (Str::isBlank($row['カテゴリ名'])) {
560
-                            $this->addErrors(($data->key() + 1) . '行目のカテゴリ名が設定されていません。');
560
+                            $this->addErrors(($data->key() + 1).'行目のカテゴリ名が設定されていません。');
561 561
                             return $this->render($app, $form, $headers);
562 562
                         } else {
563 563
                             $Category->setName(Str::trimAll($row['カテゴリ名']));
@@ -566,13 +566,13 @@  discard block
 block discarded – undo
566 566
                         if ($row['親カテゴリID'] != '') {
567 567
 
568 568
                             if (!preg_match('/^\d+$/', $row['親カテゴリID'])) {
569
-                                $this->addErrors(($data->key() + 1) . '行目の親カテゴリIDが存在しません。');
569
+                                $this->addErrors(($data->key() + 1).'行目の親カテゴリIDが存在しません。');
570 570
                                 return $this->render($app, $form, $headers);
571 571
                             }
572 572
 
573 573
                             $ParentCategory = $this->categoryRepository->find($row['親カテゴリID']);
574 574
                             if (!$ParentCategory) {
575
-                                $this->addErrors(($data->key() + 1) . '行目の親カテゴリIDが存在しません。');
575
+                                $this->addErrors(($data->key() + 1).'行目の親カテゴリIDが存在しません。');
576 576
                                 return $this->render($app, $form, $headers);
577 577
                             }
578 578
 
@@ -588,14 +588,14 @@  discard block
 block discarded – undo
588 588
                         }
589 589
 
590 590
                         if ($this->appConfig['category_nest_level'] < $Category->getHierarchy()) {
591
-                            $this->addErrors(($data->key() + 1) . '行目のカテゴリが最大レベルを超えているため設定できません。');
591
+                            $this->addErrors(($data->key() + 1).'行目のカテゴリが最大レベルを超えているため設定できません。');
592 592
                             return $this->render($app, $form, $headers);
593 593
                         }
594 594
 
595 595
                         $status = $this->categoryRepository->save($Category);
596 596
 
597 597
                         if (!$status) {
598
-                            $this->addErrors(($data->key() + 1) . '行目のカテゴリが設定できません。');
598
+                            $this->addErrors(($data->key() + 1).'行目のカテゴリが設定できません。');
599 599
                         }
600 600
 
601 601
                         if ($this->hasErrors()) {
@@ -642,7 +642,7 @@  discard block
 block discarded – undo
642 642
             throw new NotFoundHttpException();
643 643
         }
644 644
 
645
-        $response->setCallback(function () use ($app, $request, $headers) {
645
+        $response->setCallback(function() use ($app, $request, $headers) {
646 646
 
647 647
             // ヘッダ行の出力
648 648
             $row = array();
@@ -657,7 +657,7 @@  discard block
 block discarded – undo
657 657
         });
658 658
 
659 659
         $response->headers->set('Content-Type', 'application/octet-stream');
660
-        $response->headers->set('Content-Disposition', 'attachment; filename=' . $filename);
660
+        $response->headers->set('Content-Disposition', 'attachment; filename='.$filename);
661 661
         $response->send();
662 662
 
663 663
         return $response;
@@ -680,7 +680,7 @@  discard block
 block discarded – undo
680 680
         if (!empty($this->fileName)) {
681 681
             try {
682 682
                 $fs = new Filesystem();
683
-                $fs->remove($this->appConfig['csv_temp_realdir'] . '/' . $this->fileName);
683
+                $fs->remove($this->appConfig['csv_temp_realdir'].'/'.$this->fileName);
684 684
             } catch (\Exception $e) {
685 685
                 // エラーが発生しても無視する
686 686
             }
@@ -703,10 +703,10 @@  discard block
 block discarded – undo
703 703
     protected function getImportData($app, $formFile)
704 704
     {
705 705
         // アップロードされたCSVファイルを一時ディレクトリに保存
706
-        $this->fileName = 'upload_' . Str::random() . '.' . $formFile->getClientOriginalExtension();
706
+        $this->fileName = 'upload_'.Str::random().'.'.$formFile->getClientOriginalExtension();
707 707
         $formFile->move($this->appConfig['csv_temp_realdir'], $this->fileName);
708 708
 
709
-        $file = file_get_contents($this->appConfig['csv_temp_realdir'] . '/' . $this->fileName);
709
+        $file = file_get_contents($this->appConfig['csv_temp_realdir'].'/'.$this->fileName);
710 710
 
711 711
         if ('\\' === DIRECTORY_SEPARATOR && PHP_VERSION_ID >= 70000) {
712 712
             // Windows 環境の PHP7 の場合はファイルエンコーディングを CP932 に合わせる
@@ -802,8 +802,8 @@  discard block
 block discarded – undo
802 802
                 if (!$Category) {
803 803
                     $this->addErrors(($data->key() + 1).'行目の商品カテゴリ(ID)「'.$category.'」が存在しません。');
804 804
                 } else {
805
-                    foreach($Category->getPath() as $ParentCategory){
806
-                        if (!isset($categoriesIdList[$ParentCategory->getId()])){
805
+                    foreach ($Category->getPath() as $ParentCategory) {
806
+                        if (!isset($categoriesIdList[$ParentCategory->getId()])) {
807 807
                             $ProductCategory = $this->makeProductCategory($Product, $ParentCategory, $rank);
808 808
                             $this->entityManager->persist($ProductCategory);
809 809
                             $rank++;
@@ -811,7 +811,7 @@  discard block
 block discarded – undo
811 811
                             $categoriesIdList[$ParentCategory->getId()] = true;
812 812
                         }
813 813
                     }
814
-                    if (!isset($categoriesIdList[$Category->getId()])){
814
+                    if (!isset($categoriesIdList[$Category->getId()])) {
815 815
                         $ProductCategory = $this->makeProductCategory($Product, $Category, $rank);
816 816
                         $rank++;
817 817
                         $this->em->persist($ProductCategory);
@@ -866,7 +866,7 @@  discard block
 block discarded – undo
866 866
                 }
867 867
             }
868 868
             if (!$Tag) {
869
-                $this->addErrors(($data->key() + 1) . '行目のタグ(ID)「' . $tag_id . '」が存在しません。');
869
+                $this->addErrors(($data->key() + 1).'行目のタグ(ID)「'.$tag_id.'」が存在しません。');
870 870
             }
871 871
         }
872 872
     }
@@ -885,17 +885,17 @@  discard block
 block discarded – undo
885 885
 
886 886
 
887 887
         if ($row['商品種別(ID)'] == '') {
888
-            $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が設定されていません。');
888
+            $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が設定されていません。');
889 889
         } else {
890 890
             if (preg_match('/^\d+$/', $row['商品種別(ID)'])) {
891 891
                 $ProductType = $this->productTypeRepository->find($row['商品種別(ID)']);
892 892
                 if (!$ProductType) {
893
-                    $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。');
893
+                    $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。');
894 894
                 } else {
895 895
                     $ProductClass->setProductType($ProductType);
896 896
                 }
897 897
             } else {
898
-                $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。');
898
+                $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。');
899 899
             }
900 900
         }
901 901
 
@@ -906,12 +906,12 @@  discard block
 block discarded – undo
906 906
             if (preg_match('/^\d+$/', $row['発送日目安(ID)'])) {
907 907
                 $DeliveryDate = $this->deliveryDateRepository->find($row['発送日目安(ID)']);
908 908
                 if (!$DeliveryDate) {
909
-                    $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。');
909
+                    $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。');
910 910
                 } else {
911 911
                     $ProductClass->setDeliveryDate($DeliveryDate);
912 912
                 }
913 913
             } else {
914
-                $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。');
914
+                $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。');
915 915
             }
916 916
         }
917 917
 
@@ -922,19 +922,19 @@  discard block
 block discarded – undo
922 922
         }
923 923
 
924 924
         if ($row['在庫数無制限フラグ'] == '') {
925
-            $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。');
925
+            $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。');
926 926
         } else {
927 927
             if ($row['在庫数無制限フラグ'] == (string) Constant::DISABLED) {
928 928
                 $ProductClass->setStockUnlimited(Constant::DISABLED);
929 929
                 // 在庫数が設定されていなければエラー
930 930
                 if ($row['在庫数'] == '') {
931
-                    $this->addErrors(($data->key() + 1) . '行目の在庫数が設定されていません。');
931
+                    $this->addErrors(($data->key() + 1).'行目の在庫数が設定されていません。');
932 932
                 } else {
933 933
                     $stock = str_replace(',', '', $row['在庫数']);
934 934
                     if (preg_match('/^\d+$/', $stock) && $stock >= 0) {
935 935
                         $ProductClass->setStock($stock);
936 936
                     } else {
937
-                        $this->addErrors(($data->key() + 1) . '行目の在庫数は0以上の数値を設定してください。');
937
+                        $this->addErrors(($data->key() + 1).'行目の在庫数は0以上の数値を設定してください。');
938 938
                     }
939 939
                 }
940 940
 
@@ -942,7 +942,7 @@  discard block
 block discarded – undo
942 942
                 $ProductClass->setStockUnlimited(Constant::ENABLED);
943 943
                 $ProductClass->setStock(null);
944 944
             } else {
945
-                $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。');
945
+                $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。');
946 946
             }
947 947
         }
948 948
 
@@ -951,7 +951,7 @@  discard block
 block discarded – undo
951 951
             if (preg_match('/^\d+$/', $saleLimit) && $saleLimit >= 0) {
952 952
                 $ProductClass->setSaleLimit($saleLimit);
953 953
             } else {
954
-                $this->addErrors(($data->key() + 1) . '行目の販売制限数は0以上の数値を設定してください。');
954
+                $this->addErrors(($data->key() + 1).'行目の販売制限数は0以上の数値を設定してください。');
955 955
             }
956 956
         }
957 957
 
@@ -960,18 +960,18 @@  discard block
 block discarded – undo
960 960
             if (preg_match('/^\d+$/', $price01) && $price01 >= 0) {
961 961
                 $ProductClass->setPrice01($price01);
962 962
             } else {
963
-                $this->addErrors(($data->key() + 1) . '行目の通常価格は0以上の数値を設定してください。');
963
+                $this->addErrors(($data->key() + 1).'行目の通常価格は0以上の数値を設定してください。');
964 964
             }
965 965
         }
966 966
 
967 967
         if ($row['販売価格'] == '') {
968
-            $this->addErrors(($data->key() + 1) . '行目の販売価格が設定されていません。');
968
+            $this->addErrors(($data->key() + 1).'行目の販売価格が設定されていません。');
969 969
         } else {
970 970
             $price02 = str_replace(',', '', $row['販売価格']);
971 971
             if (preg_match('/^\d+$/', $price02) && $price02 >= 0) {
972 972
                 $ProductClass->setPrice02($price02);
973 973
             } else {
974
-                $this->addErrors(($data->key() + 1) . '行目の販売価格は0以上の数値を設定してください。');
974
+                $this->addErrors(($data->key() + 1).'行目の販売価格は0以上の数値を設定してください。');
975 975
             }
976 976
         }
977 977
 
@@ -980,7 +980,7 @@  discard block
 block discarded – undo
980 980
             if (preg_match('/^\d+$/', $delivery_fee) && $delivery_fee >= 0) {
981 981
                 $ProductClass->setDeliveryFee($delivery_fee);
982 982
             } else {
983
-                $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。');
983
+                $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。');
984 984
             }
985 985
         }
986 986
 
@@ -1013,17 +1013,17 @@  discard block
 block discarded – undo
1013 1013
         $ProductClass->setProduct($Product);
1014 1014
 
1015 1015
         if ($row['商品種別(ID)'] == '') {
1016
-            $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が設定されていません。');
1016
+            $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が設定されていません。');
1017 1017
         } else {
1018 1018
             if (preg_match('/^\d+$/', $row['商品種別(ID)'])) {
1019 1019
                 $ProductType = $this->productTypeRepository->find($row['商品種別(ID)']);
1020 1020
                 if (!$ProductType) {
1021
-                    $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。');
1021
+                    $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。');
1022 1022
                 } else {
1023 1023
                     $ProductClass->setProductType($ProductType);
1024 1024
                 }
1025 1025
             } else {
1026
-                $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。');
1026
+                $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。');
1027 1027
             }
1028 1028
         }
1029 1029
 
@@ -1032,12 +1032,12 @@  discard block
 block discarded – undo
1032 1032
             if (preg_match('/^\d+$/', $row['規格分類1(ID)'])) {
1033 1033
                 $ClassCategory = $this->classCategoryRepository->find($row['規格分類1(ID)']);
1034 1034
                 if (!$ClassCategory) {
1035
-                    $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
1035
+                    $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
1036 1036
                 } else {
1037 1037
                     $ProductClass->setClassCategory1($ClassCategory);
1038 1038
                 }
1039 1039
             } else {
1040
-                $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
1040
+                $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
1041 1041
             }
1042 1042
         }
1043 1043
 
@@ -1045,12 +1045,12 @@  discard block
 block discarded – undo
1045 1045
             if (preg_match('/^\d+$/', $row['規格分類2(ID)'])) {
1046 1046
                 $ClassCategory = $this->classCategoryRepository->find($row['規格分類2(ID)']);
1047 1047
                 if (!$ClassCategory) {
1048
-                    $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。');
1048
+                    $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。');
1049 1049
                 } else {
1050 1050
                     $ProductClass->setClassCategory2($ClassCategory);
1051 1051
                 }
1052 1052
             } else {
1053
-                $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。');
1053
+                $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。');
1054 1054
             }
1055 1055
         }
1056 1056
 
@@ -1058,12 +1058,12 @@  discard block
 block discarded – undo
1058 1058
             if (preg_match('/^\d+$/', $row['発送日目安(ID)'])) {
1059 1059
                 $DeliveryDate = $this->deliveryDateRepository->find($row['発送日目安(ID)']);
1060 1060
                 if (!$DeliveryDate) {
1061
-                    $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。');
1061
+                    $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。');
1062 1062
                 } else {
1063 1063
                     $ProductClass->setDeliveryDate($DeliveryDate);
1064 1064
                 }
1065 1065
             } else {
1066
-                $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。');
1066
+                $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。');
1067 1067
             }
1068 1068
         }
1069 1069
 
@@ -1074,19 +1074,19 @@  discard block
 block discarded – undo
1074 1074
         }
1075 1075
 
1076 1076
         if ($row['在庫数無制限フラグ'] == '') {
1077
-            $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。');
1077
+            $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。');
1078 1078
         } else {
1079 1079
             if ($row['在庫数無制限フラグ'] == (string) Constant::DISABLED) {
1080 1080
                 $ProductClass->setStockUnlimited(Constant::DISABLED);
1081 1081
                 // 在庫数が設定されていなければエラー
1082 1082
                 if ($row['在庫数'] == '') {
1083
-                    $this->addErrors(($data->key() + 1) . '行目の在庫数が設定されていません。');
1083
+                    $this->addErrors(($data->key() + 1).'行目の在庫数が設定されていません。');
1084 1084
                 } else {
1085 1085
                     $stock = str_replace(',', '', $row['在庫数']);
1086 1086
                     if (preg_match('/^\d+$/', $stock) && $stock >= 0) {
1087 1087
                         $ProductClass->setStock($row['在庫数']);
1088 1088
                     } else {
1089
-                        $this->addErrors(($data->key() + 1) . '行目の在庫数は0以上の数値を設定してください。');
1089
+                        $this->addErrors(($data->key() + 1).'行目の在庫数は0以上の数値を設定してください。');
1090 1090
                     }
1091 1091
                 }
1092 1092
 
@@ -1094,7 +1094,7 @@  discard block
 block discarded – undo
1094 1094
                 $ProductClass->setStockUnlimited(Constant::ENABLED);
1095 1095
                 $ProductClass->setStock(null);
1096 1096
             } else {
1097
-                $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。');
1097
+                $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。');
1098 1098
             }
1099 1099
         }
1100 1100
 
@@ -1103,7 +1103,7 @@  discard block
 block discarded – undo
1103 1103
             if (preg_match('/^\d+$/', $saleLimit) && $saleLimit >= 0) {
1104 1104
                 $ProductClass->setSaleLimit($saleLimit);
1105 1105
             } else {
1106
-                $this->addErrors(($data->key() + 1) . '行目の販売制限数は0以上の数値を設定してください。');
1106
+                $this->addErrors(($data->key() + 1).'行目の販売制限数は0以上の数値を設定してください。');
1107 1107
             }
1108 1108
         }
1109 1109
 
@@ -1112,18 +1112,18 @@  discard block
 block discarded – undo
1112 1112
             if (preg_match('/^\d+$/', $price01) && $price01 >= 0) {
1113 1113
                 $ProductClass->setPrice01($price01);
1114 1114
             } else {
1115
-                $this->addErrors(($data->key() + 1) . '行目の通常価格は0以上の数値を設定してください。');
1115
+                $this->addErrors(($data->key() + 1).'行目の通常価格は0以上の数値を設定してください。');
1116 1116
             }
1117 1117
         }
1118 1118
 
1119 1119
         if ($row['販売価格'] == '') {
1120
-            $this->addErrors(($data->key() + 1) . '行目の販売価格が設定されていません。');
1120
+            $this->addErrors(($data->key() + 1).'行目の販売価格が設定されていません。');
1121 1121
         } else {
1122 1122
             $price02 = str_replace(',', '', $row['販売価格']);
1123 1123
             if (preg_match('/^\d+$/', $price02) && $price02 >= 0) {
1124 1124
                 $ProductClass->setPrice02($price02);
1125 1125
             } else {
1126
-                $this->addErrors(($data->key() + 1) . '行目の販売価格は0以上の数値を設定してください。');
1126
+                $this->addErrors(($data->key() + 1).'行目の販売価格は0以上の数値を設定してください。');
1127 1127
             }
1128 1128
         }
1129 1129
 
Please login to merge, or discard this patch.