Completed
Pull Request — master (#1227)
by NOBU
21:56
created
src/Eccube/Controller/Admin/Product/CsvImportController.php 1 patch
Spacing   +82 added lines, -82 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
                     foreach ($data as $row) {
107 107
 
108 108
                         if ($headerSize != count($row)) {
109
-                            $this->addErrors(($data->key() + 1) . '行目のCSVフォーマットが一致しません。');
109
+                            $this->addErrors(($data->key() + 1).'行目のCSVフォーマットが一致しません。');
110 110
                             return $this->render($app, $form, $headers, $this->productTwig);
111 111
                         }
112 112
 
@@ -117,33 +117,33 @@  discard block
 block discarded – undo
117 117
                             if (is_numeric($row['商品ID'])) {
118 118
                                 $Product = $app['eccube.repository.product']->find($row['商品ID']);
119 119
                                 if (!$Product) {
120
-                                    $this->addErrors(($data->key() + 1) . '行目の商品IDが存在しません。');
120
+                                    $this->addErrors(($data->key() + 1).'行目の商品IDが存在しません。');
121 121
                                     return $this->render($app, $form, $headers, $this->productTwig);
122 122
                                 }
123 123
                             } else {
124
-                                $this->addErrors(($data->key() + 1) . '行目の商品IDが存在しません。');
124
+                                $this->addErrors(($data->key() + 1).'行目の商品IDが存在しません。');
125 125
                                 return $this->render($app, $form, $headers, $this->productTwig);
126 126
                             }
127 127
 
128 128
                         }
129 129
 
130 130
                         if ($row['公開ステータス(ID)'] == '') {
131
-                            $this->addErrors(($data->key() + 1) . '行目の公開ステータス(ID)が設定されていません。');
131
+                            $this->addErrors(($data->key() + 1).'行目の公開ステータス(ID)が設定されていません。');
132 132
                         } else {
133 133
                             if (is_numeric($row['公開ステータス(ID)'])) {
134 134
                                 $Disp = $app['eccube.repository.master.disp']->find($row['公開ステータス(ID)']);
135 135
                                 if (!$Disp) {
136
-                                    $this->addErrors(($data->key() + 1) . '行目の公開ステータス(ID)が存在しません。');
136
+                                    $this->addErrors(($data->key() + 1).'行目の公開ステータス(ID)が存在しません。');
137 137
                                 } else {
138 138
                                     $Product->setStatus($Disp);
139 139
                                 }
140 140
                             } else {
141
-                                $this->addErrors(($data->key() + 1) . '行目の公開ステータス(ID)が存在しません。');
141
+                                $this->addErrors(($data->key() + 1).'行目の公開ステータス(ID)が存在しません。');
142 142
                             }
143 143
                         }
144 144
 
145 145
                         if (Str::isBlank($row['商品名'])) {
146
-                            $this->addErrors(($data->key() + 1) . '行目の商品名が設定されていません。');
146
+                            $this->addErrors(($data->key() + 1).'行目の商品名が設定されていません。');
147 147
                             return $this->render($app, $form, $headers, $this->productTwig);
148 148
                         } else {
149 149
                             $Product->setName(Str::trimAll($row['商品名']));
@@ -182,10 +182,10 @@  discard block
 block discarded – undo
182 182
                         if ($row['商品削除フラグ'] == '') {
183 183
                             $Product->setDelFlg(Constant::DISABLED);
184 184
                         } else {
185
-                            if ($row['商品削除フラグ'] == (string)Constant::DISABLED || $row['商品削除フラグ'] == (string)Constant::ENABLED) {
185
+                            if ($row['商品削除フラグ'] == (string) Constant::DISABLED || $row['商品削除フラグ'] == (string) Constant::ENABLED) {
186 186
                                 $Product->setDelFlg($row['商品削除フラグ']);
187 187
                             } else {
188
-                                $this->addErrors(($data->key() + 1) . '行目の商品削除フラグが設定されていません。');
188
+                                $this->addErrors(($data->key() + 1).'行目の商品削除フラグが設定されていません。');
189 189
                                 return $this->render($app, $form, $headers, $this->productTwig);
190 190
                             }
191 191
                         }
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
                                     if (is_numeric($deliveryFee) && $deliveryFee >= 0) {
211 211
                                         $ProductClassOrg->setDeliveryFee($deliveryFee);
212 212
                                     } else {
213
-                                        $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。');
213
+                                        $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。');
214 214
                                     }
215 215
                                 }
216 216
                             }
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
                             if ($row['規格分類1(ID)'] != '') {
219 219
 
220 220
                                 if ($row['規格分類1(ID)'] == $row['規格分類2(ID)']) {
221
-                                    $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。');
221
+                                    $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。');
222 222
                                 } else {
223 223
                                     // 商品規格あり
224 224
                                     // 企画分類あり商品を作成
@@ -233,30 +233,30 @@  discard block
 block discarded – undo
233 233
                                     if (is_numeric($row['規格分類1(ID)'])) {
234 234
                                         $ClassCategory1 = $app['eccube.repository.class_category']->find($row['規格分類1(ID)']);
235 235
                                         if (!$ClassCategory1) {
236
-                                            $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
236
+                                            $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
237 237
                                         } else {
238 238
                                             $ProductClass->setClassCategory1($ClassCategory1);
239 239
                                         }
240 240
                                     } else {
241
-                                        $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
241
+                                        $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
242 242
                                     }
243 243
 
244 244
                                     if ($row['規格分類2(ID)'] != '') {
245 245
                                         if (is_numeric($row['規格分類2(ID)'])) {
246 246
                                             $ClassCategory2 = $app['eccube.repository.class_category']->find($row['規格分類2(ID)']);
247 247
                                             if (!$ClassCategory2) {
248
-                                                $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。');
248
+                                                $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。');
249 249
                                             } else {
250 250
                                                 if ($ClassCategory1 &&
251 251
                                                     ($ClassCategory1->getClassName()->getId() == $ClassCategory2->getClassName()->getId())
252 252
                                                 ) {
253
-                                                    $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。');
253
+                                                    $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。');
254 254
                                                 } else {
255 255
                                                     $ProductClass->setClassCategory2($ClassCategory2);
256 256
                                                 }
257 257
                                             }
258 258
                                         } else {
259
-                                            $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。');
259
+                                            $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。');
260 260
                                         }
261 261
                                     }
262 262
                                     $ProductClass->setProductStock($ProductStock);
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
 
269 269
                             } else {
270 270
                                 if ($row['規格分類2(ID)'] != '') {
271
-                                    $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
271
+                                    $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
272 272
                                 }
273 273
                             }
274 274
 
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
                                             if (is_numeric($deliveryFee) && $deliveryFee >= 0) {
297 297
                                                 $pc->setDeliveryFee($deliveryFee);
298 298
                                             } else {
299
-                                                $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。');
299
+                                                $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。');
300 300
                                             }
301 301
                                         }
302 302
                                     }
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
                                 }
319 319
 
320 320
                                 if ($row['規格分類1(ID)'] == $row['規格分類2(ID)']) {
321
-                                    $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。');
321
+                                    $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。');
322 322
                                 } else {
323 323
 
324 324
                                     // 必ず規格分類1がセットされている
@@ -327,36 +327,36 @@  discard block
 block discarded – undo
327 327
                                     if (is_numeric($classCategoryId1)) {
328 328
                                         $ClassCategory1 = $app['eccube.repository.class_category']->find($classCategoryId1);
329 329
                                         if (!$ClassCategory1) {
330
-                                            $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
330
+                                            $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
331 331
                                         }
332 332
                                     } else {
333
-                                        $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
333
+                                        $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
334 334
                                     }
335 335
 
336 336
                                     $ClassCategory2 = null;
337 337
                                     if ($row['規格分類2(ID)'] != '') {
338 338
                                         if ($pc->getClassCategory1() != null && $pc->getClassCategory2() == null) {
339
-                                            $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)は設定できません。');
339
+                                            $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)は設定できません。');
340 340
                                         } else {
341 341
                                             if (is_numeric($classCategoryId2)) {
342 342
                                                 $ClassCategory2 = $app['eccube.repository.class_category']->find($classCategoryId2);
343 343
                                                 if (!$ClassCategory2) {
344
-                                                    $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。');
344
+                                                    $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。');
345 345
                                                 } else {
346 346
                                                     if ($ClassCategory1 &&
347 347
                                                         ($ClassCategory1->getClassName()->getId() == $ClassCategory2->getClassName()->getId())
348 348
                                                     ) {
349
-                                                        $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。');
349
+                                                        $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。');
350 350
                                                     }
351 351
                                                 }
352 352
                                             } else {
353
-                                                $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。');
353
+                                                $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。');
354 354
                                             }
355 355
 
356 356
                                         }
357 357
                                     } else {
358 358
                                         if ($pc->getClassCategory1() != null && $pc->getClassCategory2() != null) {
359
-                                            $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)に値を設定してください。');
359
+                                            $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)に値を設定してください。');
360 360
                                         }
361 361
                                     }
362 362
                                     $ProductClass = $this->createProductClass($row, $Product, $app, $data, $ClassCategory1, $ClassCategory2);
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
                                             if (is_numeric($deliveryFee) && $deliveryFee >= 0) {
368 368
                                                 $ProductClass->setDeliveryFee($deliveryFee);
369 369
                                             } else {
370
-                                                $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。');
370
+                                                $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。');
371 371
                                             }
372 372
                                         }
373 373
                                     }
@@ -451,7 +451,7 @@  discard block
 block discarded – undo
451 451
                     foreach ($data as $row) {
452 452
 
453 453
                         if ($headerSize != count($row)) {
454
-                            $this->addErrors(($data->key() + 1) . '行目のCSVフォーマットが一致しません。');
454
+                            $this->addErrors(($data->key() + 1).'行目のCSVフォーマットが一致しません。');
455 455
                             return $this->render($app, $form, $headers, $this->categoryTwig);
456 456
                         }
457 457
 
@@ -460,23 +460,23 @@  discard block
 block discarded – undo
460 460
                             $this->em->persist($Category);
461 461
                         } else {
462 462
                             if (!is_numeric($row['カテゴリID'])) {
463
-                                $this->addErrors(($data->key() + 1) . '行目のカテゴリIDが存在しません。');
463
+                                $this->addErrors(($data->key() + 1).'行目のカテゴリIDが存在しません。');
464 464
                                 return $this->render($app, $form, $headers, $this->categoryTwig);
465 465
                             }
466 466
                             $Category = $app['eccube.repository.category']->find($row['カテゴリID']);
467 467
                             if (!$Category) {
468
-                                $this->addErrors(($data->key() + 1) . '行目のカテゴリIDが存在しません。');
468
+                                $this->addErrors(($data->key() + 1).'行目のカテゴリIDが存在しません。');
469 469
                                 return $this->render($app, $form, $headers, $this->categoryTwig);
470 470
                             }
471 471
                             if ($row['カテゴリID'] == $row['親カテゴリID']) {
472
-                                $this->addErrors(($data->key() + 1) . '行目のカテゴリIDと親カテゴリIDが同じです。');
472
+                                $this->addErrors(($data->key() + 1).'行目のカテゴリIDと親カテゴリIDが同じです。');
473 473
                                 return $this->render($app, $form, $headers, $this->categoryTwig);
474 474
                             }
475 475
 
476 476
                         }
477 477
 
478 478
                         if (Str::isBlank($row['カテゴリ名'])) {
479
-                            $this->addErrors(($data->key() + 1) . '行目のカテゴリ名が設定されていません。');
479
+                            $this->addErrors(($data->key() + 1).'行目のカテゴリ名が設定されていません。');
480 480
                             return $this->render($app, $form, $headers, $this->categoryTwig);
481 481
                         } else {
482 482
                             $Category->setName(Str::trimAll($row['カテゴリ名']));
@@ -485,13 +485,13 @@  discard block
 block discarded – undo
485 485
                         if ($row['親カテゴリID'] != '') {
486 486
 
487 487
                             if (!is_numeric($row['親カテゴリID'])) {
488
-                                $this->addErrors(($data->key() + 1) . '行目の親カテゴリIDが存在しません。');
488
+                                $this->addErrors(($data->key() + 1).'行目の親カテゴリIDが存在しません。');
489 489
                                 return $this->render($app, $form, $headers, $this->categoryTwig);
490 490
                             }
491 491
 
492 492
                             $ParentCategory = $app['eccube.repository.category']->find($row['親カテゴリID']);
493 493
                             if (!$ParentCategory) {
494
-                                $this->addErrors(($data->key() + 1) . '行目の親カテゴリIDが存在しません。');
494
+                                $this->addErrors(($data->key() + 1).'行目の親カテゴリIDが存在しません。');
495 495
                                 return $this->render($app, $form, $headers, $this->categoryTwig);
496 496
                             }
497 497
 
@@ -507,14 +507,14 @@  discard block
 block discarded – undo
507 507
                         }
508 508
 
509 509
                         if ($app['config']['category_nest_level'] < $Category->getLevel()) {
510
-                            $this->addErrors(($data->key() + 1) . '行目のカテゴリが最大レベルを超えているため設定できません。');
510
+                            $this->addErrors(($data->key() + 1).'行目のカテゴリが最大レベルを超えているため設定できません。');
511 511
                             return $this->render($app, $form, $headers, $this->categoryTwig);
512 512
                         }
513 513
 
514 514
                         $status = $app['eccube.repository.category']->save($Category);
515 515
 
516 516
                         if (!$status) {
517
-                            $this->addErrors(($data->key() + 1) . '行目のカテゴリが設定できません。');
517
+                            $this->addErrors(($data->key() + 1).'行目のカテゴリが設定できません。');
518 518
                         }
519 519
 
520 520
                         if ($this->hasErrors()) {
@@ -558,7 +558,7 @@  discard block
 block discarded – undo
558 558
             throw new NotFoundHttpException();
559 559
         }
560 560
 
561
-        $response->setCallback(function () use ($app, $request, $headers) {
561
+        $response->setCallback(function() use ($app, $request, $headers) {
562 562
 
563 563
             // ヘッダ行の出力
564 564
             $row = array();
@@ -573,7 +573,7 @@  discard block
 block discarded – undo
573 573
         });
574 574
 
575 575
         $response->headers->set('Content-Type', 'application/octet-stream');
576
-        $response->headers->set('Content-Disposition', 'attachment; filename=' . $filename);
576
+        $response->headers->set('Content-Disposition', 'attachment; filename='.$filename);
577 577
         $response->send();
578 578
 
579 579
         return $response;
@@ -597,7 +597,7 @@  discard block
 block discarded – undo
597 597
         if (!empty($this->fileName)) {
598 598
             try {
599 599
                 $fs = new Filesystem();
600
-                $fs->remove($app['config']['csv_temp_realdir'] . '/' . $this->fileName);
600
+                $fs->remove($app['config']['csv_temp_realdir'].'/'.$this->fileName);
601 601
             } catch (\Exception $e) {
602 602
                 // エラーが発生しても無視する
603 603
             }
@@ -620,10 +620,10 @@  discard block
 block discarded – undo
620 620
     protected function getImportData($app, $formFile)
621 621
     {
622 622
         // アップロードされたCSVファイルを一時ディレクトリに保存
623
-        $this->fileName = 'upload_' . Str::random() . '.' . $formFile->getClientOriginalExtension();
623
+        $this->fileName = 'upload_'.Str::random().'.'.$formFile->getClientOriginalExtension();
624 624
         $formFile->move($app['config']['csv_temp_realdir'], $this->fileName);
625 625
 
626
-        $file = file_get_contents($app['config']['csv_temp_realdir'] . '/' . $this->fileName);
626
+        $file = file_get_contents($app['config']['csv_temp_realdir'].'/'.$this->fileName);
627 627
         // アップロードされたファイルがUTF-8以外は文字コード変換を行う
628 628
         $encode = Str::characterEncoding(substr($file, 0, 6));
629 629
         if ($encode != 'UTF-8') {
@@ -702,7 +702,7 @@  discard block
 block discarded – undo
702 702
                 if (is_numeric($category)) {
703 703
                     $Category = $app['eccube.repository.category']->find($category);
704 704
                     if (!$Category) {
705
-                        $this->addErrors(($data->key() + 1) . '行目の商品カテゴリ(ID)「' . $category . '」が存在しません。');
705
+                        $this->addErrors(($data->key() + 1).'行目の商品カテゴリ(ID)「'.$category.'」が存在しません。');
706 706
                     } else {
707 707
                         $ProductCategory = new ProductCategory();
708 708
                         $ProductCategory->setProductId($Product->getId());
@@ -715,7 +715,7 @@  discard block
 block discarded – undo
715 715
                         $this->em->persist($ProductCategory);
716 716
                     }
717 717
                 } else {
718
-                    $this->addErrors(($data->key() + 1) . '行目の商品カテゴリ(ID)「' . $category . '」が存在しません。');
718
+                    $this->addErrors(($data->key() + 1).'行目の商品カテゴリ(ID)「'.$category.'」が存在しません。');
719 719
                 }
720 720
             }
721 721
 
@@ -735,17 +735,17 @@  discard block
 block discarded – undo
735 735
 
736 736
 
737 737
         if ($row['商品種別(ID)'] == '') {
738
-            $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が設定されていません。');
738
+            $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が設定されていません。');
739 739
         } else {
740 740
             if (is_numeric($row['商品種別(ID)'])) {
741 741
                 $ProductType = $app['eccube.repository.master.product_type']->find($row['商品種別(ID)']);
742 742
                 if (!$ProductType) {
743
-                    $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。');
743
+                    $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。');
744 744
                 } else {
745 745
                     $ProductClass->setProductType($ProductType);
746 746
                 }
747 747
             } else {
748
-                $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。');
748
+                $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。');
749 749
             }
750 750
         }
751 751
 
@@ -756,12 +756,12 @@  discard block
 block discarded – undo
756 756
             if (is_numeric($row['発送日目安(ID)'])) {
757 757
                 $DeliveryDate = $app['eccube.repository.delivery_date']->find($row['発送日目安(ID)']);
758 758
                 if (!$DeliveryDate) {
759
-                    $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。');
759
+                    $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。');
760 760
                 } else {
761 761
                     $ProductClass->setDeliveryDate($DeliveryDate);
762 762
                 }
763 763
             } else {
764
-                $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。');
764
+                $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。');
765 765
             }
766 766
         }
767 767
 
@@ -772,27 +772,27 @@  discard block
 block discarded – undo
772 772
         }
773 773
 
774 774
         if ($row['在庫数無制限フラグ'] == '') {
775
-            $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。');
775
+            $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。');
776 776
         } else {
777
-            if ($row['在庫数無制限フラグ'] == (string)Constant::DISABLED) {
777
+            if ($row['在庫数無制限フラグ'] == (string) Constant::DISABLED) {
778 778
                 $ProductClass->setStockUnlimited(Constant::DISABLED);
779 779
                 // 在庫数が設定されていなければエラー
780 780
                 if ($row['在庫数'] == '') {
781
-                    $this->addErrors(($data->key() + 1) . '行目の在庫数が設定されていません。');
781
+                    $this->addErrors(($data->key() + 1).'行目の在庫数が設定されていません。');
782 782
                 } else {
783 783
                     $stock = str_replace(',', '', $row['在庫数']);
784 784
                     if (is_numeric($stock) && $stock >= 0) {
785 785
                         $ProductClass->setStock($stock);
786 786
                     } else {
787
-                        $this->addErrors(($data->key() + 1) . '行目の在庫数は0以上の数値を設定してください。');
787
+                        $this->addErrors(($data->key() + 1).'行目の在庫数は0以上の数値を設定してください。');
788 788
                     }
789 789
                 }
790 790
 
791
-            } else if ($row['在庫数無制限フラグ'] == (string)Constant::ENABLED) {
791
+            } else if ($row['在庫数無制限フラグ'] == (string) Constant::ENABLED) {
792 792
                 $ProductClass->setStockUnlimited(Constant::ENABLED);
793 793
                 $ProductClass->setStock(null);
794 794
             } else {
795
-                $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。');
795
+                $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。');
796 796
             }
797 797
         }
798 798
 
@@ -801,7 +801,7 @@  discard block
 block discarded – undo
801 801
             if (is_numeric($saleLimit) && $saleLimit >= 0) {
802 802
                 $ProductClass->setSaleLimit($saleLimit);
803 803
             } else {
804
-                $this->addErrors(($data->key() + 1) . '行目の販売制限数は0以上の数値を設定してください。');
804
+                $this->addErrors(($data->key() + 1).'行目の販売制限数は0以上の数値を設定してください。');
805 805
             }
806 806
         }
807 807
 
@@ -810,18 +810,18 @@  discard block
 block discarded – undo
810 810
             if (is_numeric($price01) && $price01 >= 0) {
811 811
                 $ProductClass->setPrice01($price01);
812 812
             } else {
813
-                $this->addErrors(($data->key() + 1) . '行目の通常価格は0以上の数値を設定してください。');
813
+                $this->addErrors(($data->key() + 1).'行目の通常価格は0以上の数値を設定してください。');
814 814
             }
815 815
         }
816 816
 
817 817
         if ($row['販売価格'] == '') {
818
-            $this->addErrors(($data->key() + 1) . '行目の販売価格が設定されていません。');
818
+            $this->addErrors(($data->key() + 1).'行目の販売価格が設定されていません。');
819 819
         } else {
820 820
             $price02 = str_replace(',', '', $row['販売価格']);
821 821
             if (is_numeric($price02) && $price02 >= 0) {
822 822
                 $ProductClass->setPrice02($price02);
823 823
             } else {
824
-                $this->addErrors(($data->key() + 1) . '行目の販売価格は0以上の数値を設定してください。');
824
+                $this->addErrors(($data->key() + 1).'行目の販売価格は0以上の数値を設定してください。');
825 825
             }
826 826
         }
827 827
 
@@ -830,17 +830,17 @@  discard block
 block discarded – undo
830 830
             if (is_numeric($delivery_fee) && $delivery_fee >= 0) {
831 831
                 $ProductClass->setDeliveryFee($delivery_fee);
832 832
             } else {
833
-                $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。');
833
+                $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。');
834 834
             }
835 835
         }
836 836
 
837 837
         if ($row['商品規格削除フラグ'] == '') {
838 838
             $ProductClass->setDelFlg(Constant::DISABLED);
839 839
         } else {
840
-            if ($row['商品規格削除フラグ'] == (string)Constant::DISABLED || $row['商品規格削除フラグ'] == (string)Constant::ENABLED) {
840
+            if ($row['商品規格削除フラグ'] == (string) Constant::DISABLED || $row['商品規格削除フラグ'] == (string) Constant::ENABLED) {
841 841
                 $ProductClass->setDelFlg($row['商品規格削除フラグ']);
842 842
             } else {
843
-                $this->addErrors(($data->key() + 1) . '行目の商品規格削除フラグが設定されていません。');
843
+                $this->addErrors(($data->key() + 1).'行目の商品規格削除フラグが設定されていません。');
844 844
             }
845 845
         }
846 846
 
@@ -873,17 +873,17 @@  discard block
 block discarded – undo
873 873
         $ProductClass->setProduct($Product);
874 874
 
875 875
         if ($row['商品種別(ID)'] == '') {
876
-            $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が設定されていません。');
876
+            $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が設定されていません。');
877 877
         } else {
878 878
             if (is_numeric($row['商品種別(ID)'])) {
879 879
                 $ProductType = $app['eccube.repository.master.product_type']->find($row['商品種別(ID)']);
880 880
                 if (!$ProductType) {
881
-                    $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。');
881
+                    $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。');
882 882
                 } else {
883 883
                     $ProductClass->setProductType($ProductType);
884 884
                 }
885 885
             } else {
886
-                $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。');
886
+                $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。');
887 887
             }
888 888
         }
889 889
 
@@ -892,12 +892,12 @@  discard block
 block discarded – undo
892 892
             if (is_numeric($row['規格分類1(ID)'])) {
893 893
                 $ClassCategory = $app['eccube.repository.class_category']->find($row['規格分類1(ID)']);
894 894
                 if (!$ClassCategory) {
895
-                    $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
895
+                    $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
896 896
                 } else {
897 897
                     $ProductClass->setClassCategory1($ClassCategory);
898 898
                 }
899 899
             } else {
900
-                $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
900
+                $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
901 901
             }
902 902
         }
903 903
 
@@ -905,12 +905,12 @@  discard block
 block discarded – undo
905 905
             if (is_numeric($row['規格分類2(ID)'])) {
906 906
                 $ClassCategory = $app['eccube.repository.class_category']->find($row['規格分類2(ID)']);
907 907
                 if (!$ClassCategory) {
908
-                    $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。');
908
+                    $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。');
909 909
                 } else {
910 910
                     $ProductClass->setClassCategory2($ClassCategory);
911 911
                 }
912 912
             } else {
913
-                $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。');
913
+                $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。');
914 914
             }
915 915
         }
916 916
 
@@ -918,12 +918,12 @@  discard block
 block discarded – undo
918 918
             if (is_numeric($row['発送日目安(ID)'])) {
919 919
                 $DeliveryDate = $app['eccube.repository.delivery_date']->find($row['発送日目安(ID)']);
920 920
                 if (!$DeliveryDate) {
921
-                    $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。');
921
+                    $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。');
922 922
                 } else {
923 923
                     $ProductClass->setDeliveryDate($DeliveryDate);
924 924
                 }
925 925
             } else {
926
-                $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。');
926
+                $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。');
927 927
             }
928 928
         }
929 929
 
@@ -934,27 +934,27 @@  discard block
 block discarded – undo
934 934
         }
935 935
 
936 936
         if ($row['在庫数無制限フラグ'] == '') {
937
-            $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。');
937
+            $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。');
938 938
         } else {
939
-            if ($row['在庫数無制限フラグ'] == (string)Constant::DISABLED) {
939
+            if ($row['在庫数無制限フラグ'] == (string) Constant::DISABLED) {
940 940
                 $ProductClass->setStockUnlimited(Constant::DISABLED);
941 941
                 // 在庫数が設定されていなければエラー
942 942
                 if ($row['在庫数'] == '') {
943
-                    $this->addErrors(($data->key() + 1) . '行目の在庫数が設定されていません。');
943
+                    $this->addErrors(($data->key() + 1).'行目の在庫数が設定されていません。');
944 944
                 } else {
945 945
                     $stock = str_replace(',', '', $row['在庫数']);
946 946
                     if (is_numeric($stock) && $stock >= 0) {
947 947
                         $ProductClass->setStock($row['在庫数']);
948 948
                     } else {
949
-                        $this->addErrors(($data->key() + 1) . '行目の在庫数は0以上の数値を設定してください。');
949
+                        $this->addErrors(($data->key() + 1).'行目の在庫数は0以上の数値を設定してください。');
950 950
                     }
951 951
                 }
952 952
 
953
-            } else if ($row['在庫数無制限フラグ'] == (string)Constant::ENABLED) {
953
+            } else if ($row['在庫数無制限フラグ'] == (string) Constant::ENABLED) {
954 954
                 $ProductClass->setStockUnlimited(Constant::ENABLED);
955 955
                 $ProductClass->setStock(null);
956 956
             } else {
957
-                $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。');
957
+                $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。');
958 958
             }
959 959
         }
960 960
 
@@ -963,7 +963,7 @@  discard block
 block discarded – undo
963 963
             if (is_numeric($saleLimit) && $saleLimit >= 0) {
964 964
                 $ProductClass->setSaleLimit($saleLimit);
965 965
             } else {
966
-                $this->addErrors(($data->key() + 1) . '行目の販売制限数は0以上の数値を設定してください。');
966
+                $this->addErrors(($data->key() + 1).'行目の販売制限数は0以上の数値を設定してください。');
967 967
             }
968 968
         }
969 969
 
@@ -972,28 +972,28 @@  discard block
 block discarded – undo
972 972
             if (is_numeric($price01) && $price01 >= 0) {
973 973
                 $ProductClass->setPrice01($price01);
974 974
             } else {
975
-                $this->addErrors(($data->key() + 1) . '行目の通常価格は0以上の数値を設定してください。');
975
+                $this->addErrors(($data->key() + 1).'行目の通常価格は0以上の数値を設定してください。');
976 976
             }
977 977
         }
978 978
 
979 979
         if ($row['販売価格'] == '') {
980
-            $this->addErrors(($data->key() + 1) . '行目の販売価格が設定されていません。');
980
+            $this->addErrors(($data->key() + 1).'行目の販売価格が設定されていません。');
981 981
         } else {
982 982
             $price02 = str_replace(',', '', $row['販売価格']);
983 983
             if (is_numeric($price02) && $price02 >= 0) {
984 984
                 $ProductClass->setPrice02($price02);
985 985
             } else {
986
-                $this->addErrors(($data->key() + 1) . '行目の販売価格は0以上の数値を設定してください。');
986
+                $this->addErrors(($data->key() + 1).'行目の販売価格は0以上の数値を設定してください。');
987 987
             }
988 988
         }
989 989
 
990 990
         if ($row['商品規格削除フラグ'] == '') {
991 991
             $ProductClass->setDelFlg(Constant::DISABLED);
992 992
         } else {
993
-            if ($row['商品規格削除フラグ'] == (string)Constant::DISABLED || $row['商品規格削除フラグ'] == (string)Constant::ENABLED) {
993
+            if ($row['商品規格削除フラグ'] == (string) Constant::DISABLED || $row['商品規格削除フラグ'] == (string) Constant::ENABLED) {
994 994
                 $ProductClass->setDelFlg($row['商品規格削除フラグ']);
995 995
             } else {
996
-                $this->addErrors(($data->key() + 1) . '行目の商品規格削除フラグが設定されていません。');
996
+                $this->addErrors(($data->key() + 1).'行目の商品規格削除フラグが設定されていません。');
997 997
             }
998 998
         }
999 999
 
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Product/ProductClassController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
                     $class2Valied = $this->isValiedCategory($ClassName2);
95 95
 
96 96
                     // 規格が選択されていないか、選択された状態で分類が保有されていれば、画面表示
97
-                    if($class1Valied && $class2Valied){
97
+                    if ($class1Valied && $class2Valied) {
98 98
                         $hasClassCategoryFlg = true;
99 99
                     }
100 100
 
@@ -582,7 +582,7 @@  discard block
 block discarded – undo
582 582
         // 個別消費税
583 583
         $BaseInfo = $app['eccube.repository.base_info']->get();
584 584
         if ($BaseInfo->getOptionProductTaxRule() == Constant::ENABLED) {
585
-            if($productClassOrig->getTaxRate()) {
585
+            if ($productClassOrig->getTaxRate()) {
586 586
                 $productClassDest->setTaxRate($productClassOrig->getTaxRate());
587 587
                 if ($productClassDest->getTaxRule() && !$productClassDest->getTaxRule()->getDelFlg()) {
588 588
                     $productClassDest->getTaxRule()->setTaxRate($productClassOrig->getTaxRate());
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Product/ProductController.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
             foreach ($images as $img) {
152 152
                 foreach ($img as $image) {
153 153
                     $extension = $image->getClientOriginalExtension();
154
-                    $filename = date('mdHis') . uniqid('_') . '.' . $extension;
154
+                    $filename = date('mdHis').uniqid('_').'.'.$extension;
155 155
                     $image->move($app['config']['image_temp_realdir'], $filename);
156 156
                     $files[] = $filename;
157 157
                 }
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
                     $app['orm.em']->persist($ProductImage);
312 312
 
313 313
                     // 移動
314
-                    $file = new File($app['config']['image_temp_realdir'] . '/' . $add_image);
314
+                    $file = new File($app['config']['image_temp_realdir'].'/'.$add_image);
315 315
                     $file->move($app['config']['image_save_realdir']);
316 316
                 }
317 317
 
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
 
332 332
                     // 削除
333 333
                     $fs = new Filesystem();
334
-                    $fs->remove($app['config']['image_save_realdir'] . '/' . $delete_image);
334
+                    $fs->remove($app['config']['image_save_realdir'].'/'.$delete_image);
335 335
                 }
336 336
                 $app['orm.em']->persist($Product);
337 337
                 $app['orm.em']->flush();
@@ -430,7 +430,7 @@  discard block
 block discarded – undo
430 430
                 foreach ($deleteImages as $deleteImage) {
431 431
                     try {
432 432
                         $fs = new Filesystem();
433
-                        $fs->remove($app['config']['image_save_realdir'] . '/' . $deleteImage);
433
+                        $fs->remove($app['config']['image_save_realdir'].'/'.$deleteImage);
434 434
                     } catch (\Exception $e) {
435 435
                         // エラーが発生しても無視する
436 436
                     }
@@ -475,10 +475,10 @@  discard block
 block discarded – undo
475 475
 
476 476
                     // 画像ファイルを新規作成
477 477
                     $extension = pathinfo($Image->getFileName(), PATHINFO_EXTENSION);
478
-                    $filename = date('mdHis') . uniqid('_') . '.' . $extension;
478
+                    $filename = date('mdHis').uniqid('_').'.'.$extension;
479 479
                     try {
480 480
                         $fs = new Filesystem();
481
-                        $fs->copy($app['config']['image_save_realdir'] . '/' . $Image->getFileName(), $app['config']['image_save_realdir'] . '/' . $filename);
481
+                        $fs->copy($app['config']['image_save_realdir'].'/'.$Image->getFileName(), $app['config']['image_save_realdir'].'/'.$filename);
482 482
                     } catch (\Exception $e) {
483 483
                         // エラーが発生しても無視する
484 484
                     }
@@ -533,7 +533,7 @@  discard block
 block discarded – undo
533 533
         $em->getConfiguration()->setSQLLogger(null);
534 534
 
535 535
         $response = new StreamedResponse();
536
-        $response->setCallback(function () use ($app, $request) {
536
+        $response->setCallback(function() use ($app, $request) {
537 537
 
538 538
             // CSV種別を元に初期化.
539 539
             $app['eccube.service.csv.export']->initCsvType(CsvType::CSV_TYPE_PRODUCT);
@@ -557,7 +557,7 @@  discard block
 block discarded – undo
557 557
 
558 558
             // データ行の出力.
559 559
             $app['eccube.service.csv.export']->setExportQueryBuilder($qb);
560
-            $app['eccube.service.csv.export']->exportData(function ($entity, $csvService) {
560
+            $app['eccube.service.csv.export']->exportData(function($entity, $csvService) {
561 561
 
562 562
                 $Csvs = $csvService->getCsvs();
563 563
 
@@ -589,9 +589,9 @@  discard block
 block discarded – undo
589 589
         });
590 590
 
591 591
         $now = new \DateTime();
592
-        $filename = 'product_' . $now->format('YmdHis') . '.csv';
592
+        $filename = 'product_'.$now->format('YmdHis').'.csv';
593 593
         $response->headers->set('Content-Type', 'application/octet-stream');
594
-        $response->headers->set('Content-Disposition', 'attachment; filename=' . $filename);
594
+        $response->headers->set('Content-Disposition', 'attachment; filename='.$filename);
595 595
         $response->send();
596 596
 
597 597
         return $response;
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Setting/Shop/PaymentController.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -70,10 +70,10 @@  discard block
 block discarded – undo
70 70
                 // ファイルアップロード
71 71
                 $file = $form['payment_image']->getData();
72 72
                 $fs = new Filesystem();
73
-                if ($file && $fs->exists($app['config']['image_temp_realdir'] . '/' . $file)) {
73
+                if ($file && $fs->exists($app['config']['image_temp_realdir'].'/'.$file)) {
74 74
                     $fs->rename(
75
-                        $app['config']['image_temp_realdir'] . '/' . $file,
76
-                        $app['config']['image_save_realdir'] . '/' . $file
75
+                        $app['config']['image_temp_realdir'].'/'.$file,
76
+                        $app['config']['image_save_realdir'].'/'.$file
77 77
                     );
78 78
                 }
79 79
 
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
         if (isset($images['payment_image_file'])) {
101 101
             $image = $images['payment_image_file'];
102 102
             $extension = $image->guessExtension();
103
-            $filename = date('mdHis') . uniqid('_') . '.' . $extension;
103
+            $filename = date('mdHis').uniqid('_').'.'.$extension;
104 104
             $image->move($app['config']['image_temp_realdir'], $filename);
105 105
         }
106 106
 
@@ -127,12 +127,12 @@  discard block
 block discarded – undo
127 127
         foreach ($Payments as $Payment) {
128 128
             if ($Payment->getId() != $id) {
129 129
                 $Payment->setRank($rank);
130
-                $rank ++;
130
+                $rank++;
131 131
             }
132 132
         }
133 133
         $app['orm.em']->flush();
134 134
 
135
-        $app->addSuccess('admin.delete.complete', 'admin') ;
135
+        $app->addSuccess('admin.delete.complete', 'admin');
136 136
 
137 137
         return $app->redirect($app->url('admin_setting_shop_payment'));
138 138
     }
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Setting/System/SecurityController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
                 // 現在のセキュリティ情報を更新
53 53
                 $adminRoot = $app['config']['admin_route'];
54 54
 
55
-                $configFile = $app['config']['root_dir'] . '/app/config/eccube/config.yml';
55
+                $configFile = $app['config']['root_dir'].'/app/config/eccube/config.yml';
56 56
                 $config = Yaml::parse(file_get_contents($configFile));
57 57
                 // trim処理
58 58
                 $allowHost = Str::convertLineFeed($data['admin_allow_host']);
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 
83 83
                 if ($adminRoot != $data['admin_route_dir']) {
84 84
                     // admin_routeが変更されればpath.ymlを更新
85
-                    $pathFile = $app['config']['root_dir'] . '/app/config/eccube/path.yml';
85
+                    $pathFile = $app['config']['root_dir'].'/app/config/eccube/path.yml';
86 86
                     $config = Yaml::parse(file_get_contents($pathFile));
87 87
                     $config['admin_route'] = $data['admin_route_dir'];
88 88
 
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
                     $this->getSecurity($app)->setToken(null);
95 95
 
96 96
                     // 管理者画面へ再ログイン
97
-                    return $app->redirect($request->getBaseUrl() . '/' . $config['admin_route']);
97
+                    return $app->redirect($request->getBaseUrl().'/'.$config['admin_route']);
98 98
                 }
99 99
 
100 100
                 $app->addSuccess('admin.sysmte.security.save.complete', 'admin');
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
             if (count($allowHost) > 0) {
108 108
                 $form->get('admin_allow_host')->setData(Str::convertLineFeed(implode("\n", $allowHost)));
109 109
             }
110
-            $form->get('force_ssl')->setData((bool)$app['config']['force_ssl']);
110
+            $form->get('force_ssl')->setData((bool) $app['config']['force_ssl']);
111 111
         }
112 112
 
113 113
         return $app->render('Setting/System/security.twig', array(
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Setting/System/SystemController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -67,13 +67,13 @@
 block discarded – undo
67 67
         $server = $app['request'];
68 68
 
69 69
         $arrSystemInfo = array(
70
-            array('title' => 'EC-CUBE',     'value' => Constant::VERSION),
71
-            array('title' => 'サーバーOS',    'value' => php_uname()),
72
-            array('title' => 'DBサーバー',    'value' => $system->getDbversion()),
73
-            array('title' => 'WEBサーバー',   'value' => $server->server->get("SERVER_SOFTWARE")),
70
+            array('title' => 'EC-CUBE', 'value' => Constant::VERSION),
71
+            array('title' => 'サーバーOS', 'value' => php_uname()),
72
+            array('title' => 'DBサーバー', 'value' => $system->getDbversion()),
73
+            array('title' => 'WEBサーバー', 'value' => $server->server->get("SERVER_SOFTWARE")),
74 74
         );
75 75
 
76
-        $value = phpversion() . ' (' . implode(', ', get_loaded_extensions()) . ')';
76
+        $value = phpversion().' ('.implode(', ', get_loaded_extensions()).')';
77 77
         $arrSystemInfo[] = array('title' => 'PHP', 'value' => $value);
78 78
         $arrSystemInfo[] = array('title' => 'HTTPユーザーエージェント', 'value' => $server->headers->get('User-Agent'));
79 79
 
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Store/PluginController.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         foreach ($Plugins as $Plugin) {
59 59
 
60 60
             $form = $app['form.factory']
61
-                ->createNamedBuilder('form' . $Plugin->getId(), 'plugin_management', null, array(
61
+                ->createNamedBuilder('form'.$Plugin->getId(), 'plugin_management', null, array(
62 62
                     'plugin_id' => $Plugin->getId(),
63 63
                 ))
64 64
                 ->getForm();
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
             try {
69 69
                 // プラグイン用設定画面があれば表示(プラグイン用のサービスプロバイダーに定義されているか)
70
-                $configPages[$Plugin->getCode()] = $app->url('plugin_' . $Plugin->getCode() . '_config');
70
+                $configPages[$Plugin->getCode()] = $app->url('plugin_'.$Plugin->getCode().'_config');
71 71
             } catch (\Exception $e) {
72 72
                 // プラグインで設定画面のルートが定義されていない場合は無視
73 73
             }
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
         if (!is_null($authKey)) {
90 90
 
91 91
             // オーナーズストア通信
92
-            $url = $app['config']['owners_store_url'] . '?method=list';
92
+            $url = $app['config']['owners_store_url'].'?method=list';
93 93
             list($json, $httpHeader) = $this->getRequestApi($request, $authKey, $url);
94 94
 
95 95
             if ($json) {
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
         $Plugin = $app['eccube.repository.plugin']->find($id);
151 151
 
152 152
         $form = $app['form.factory']
153
-            ->createNamedBuilder('form' . $id, 'plugin_management', null, array(
153
+            ->createNamedBuilder('form'.$id, 'plugin_management', null, array(
154 154
                 'plugin_id' => null, // placeHolder
155 155
             ))
156 156
             ->getForm();
@@ -168,10 +168,10 @@  discard block
 block discarded – undo
168 168
                     $formFile = $form['plugin_archive']->getData();
169 169
 
170 170
                     $tmpDir = $app['eccube.service.plugin']->createTempDir();
171
-                    $tmpFile = sha1(Str::random(32)) . '.' . $formFile->getClientOriginalExtension();
171
+                    $tmpFile = sha1(Str::random(32)).'.'.$formFile->getClientOriginalExtension();
172 172
 
173 173
                     $formFile->move($tmpDir, $tmpFile);
174
-                    $app['eccube.service.plugin']->update($Plugin, $tmpDir . '/' . $tmpFile);
174
+                    $app['eccube.service.plugin']->update($Plugin, $tmpDir.'/'.$tmpFile);
175 175
 
176 176
                     $fs = new Filesystem();
177 177
                     $fs->remove($tmpDir);
@@ -340,11 +340,11 @@  discard block
 block discarded – undo
340 340
                     $formFile = $form['plugin_archive']->getData();
341 341
 
342 342
                     $tmpDir = $service->createTempDir();
343
-                    $tmpFile = sha1(Str::random(32)) . '.' . $formFile->getClientOriginalExtension(); // 拡張子を付けないとpharが動かないので付ける
343
+                    $tmpFile = sha1(Str::random(32)).'.'.$formFile->getClientOriginalExtension(); // 拡張子を付けないとpharが動かないので付ける
344 344
 
345 345
                     $formFile->move($tmpDir, $tmpFile);
346 346
 
347
-                    $service->install($tmpDir . '/' . $tmpFile);
347
+                    $service->install($tmpDir.'/'.$tmpFile);
348 348
 
349 349
                     $fs = new Filesystem();
350 350
                     $fs->remove($tmpDir);
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
         if (!is_null($authKey)) {
392 392
 
393 393
             // オーナーズストア通信
394
-            $url = $app['config']['owners_store_url'] . '?method=list';
394
+            $url = $app['config']['owners_store_url'].'?method=list';
395 395
             list($json, $httpHeader) = $this->getRequestApi($request, $authKey, $url);
396 396
 
397 397
             if ($json === false) {
@@ -465,7 +465,7 @@  discard block
 block discarded – undo
465 465
                         }
466 466
 
467 467
                     } else {
468
-                        $message = $data['error_code'] . ' : ' . $data['error_message'];
468
+                        $message = $data['error_code'].' : '.$data['error_message'];
469 469
                     }
470 470
                 } else {
471 471
                     $success = 0;
@@ -507,7 +507,7 @@  discard block
 block discarded – undo
507 507
         if (!is_null($authKey)) {
508 508
 
509 509
             // オーナーズストア通信
510
-            $url = $app['config']['owners_store_url'] . '?method=download&product_id=' . $id;
510
+            $url = $app['config']['owners_store_url'].'?method=download&product_id='.$id;
511 511
             list($json, $httpHeader) = $this->getRequestApi($request, $authKey, $url);
512 512
 
513 513
             if ($json === false) {
@@ -532,22 +532,22 @@  discard block
 block discarded – undo
532 532
                             $extension = pathinfo($item['file_name'], PATHINFO_EXTENSION);
533 533
 
534 534
                             $tmpDir = $service->createTempDir();
535
-                            $tmpFile = sha1(Str::random(32)) . '.' . $extension;
535
+                            $tmpFile = sha1(Str::random(32)).'.'.$extension;
536 536
 
537 537
                             // ファイル作成
538 538
                             $fs = new Filesystem();
539
-                            $fs->dumpFile($tmpDir . '/' . $tmpFile, $file);
539
+                            $fs->dumpFile($tmpDir.'/'.$tmpFile, $file);
540 540
 
541 541
                             if ($action == 'install') {
542 542
 
543
-                                $service->install($tmpDir . '/' . $tmpFile, $id);
543
+                                $service->install($tmpDir.'/'.$tmpFile, $id);
544 544
                                 $app->addSuccess('admin.plugin.install.complete', 'admin');
545 545
 
546 546
                             } else if ($action == 'update') {
547 547
 
548 548
                                 $Plugin = $app['eccube.repository.plugin']->findOneBy(array('source' => $id));
549 549
 
550
-                                $service->update($Plugin, $tmpDir . '/' . $tmpFile);
550
+                                $service->update($Plugin, $tmpDir.'/'.$tmpFile);
551 551
                                 $app->addSuccess('admin.plugin.update.complete', 'admin');
552 552
 
553 553
                                 Cache::clear($app, false);
@@ -558,7 +558,7 @@  discard block
 block discarded – undo
558 558
                             $fs->remove($tmpDir);
559 559
 
560 560
                             // ダウンロード完了通知処理(正常終了時)
561
-                            $url = $app['config']['owners_store_url'] . '?method=commit&product_id=' . $id . '&status=1&version=' . $version;
561
+                            $url = $app['config']['owners_store_url'].'?method=commit&product_id='.$id.'&status=1&version='.$version;
562 562
                             $this->getRequestApi($request, $authKey, $url);
563 563
 
564 564
                             return $app->redirect($app->url('admin_store_plugin'));
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
                         }
573 573
 
574 574
                     } else {
575
-                        $message = $data['error_code'] . ' : ' . $data['error_message'];
575
+                        $message = $data['error_code'].' : '.$data['error_message'];
576 576
                     }
577 577
                 } else {
578 578
                     $message = "EC-CUBEオーナーズストアにエラーが発生しています。";
@@ -581,7 +581,7 @@  discard block
 block discarded – undo
581 581
         }
582 582
 
583 583
         // ダウンロード完了通知処理(エラー発生時)
584
-        $url = $app['config']['owners_store_url'] . '?method=commit&product_id=' . $id . '&status=0&version=' . $version . '&message=' . urlencode($message);
584
+        $url = $app['config']['owners_store_url'].'?method=commit&product_id='.$id.'&status=0&version='.$version.'&message='.urlencode($message);
585 585
         $this->getRequestApi($request, $authKey, $url);
586 586
 
587 587
         $app->addError($message, 'admin');
@@ -653,9 +653,9 @@  discard block
 block discarded – undo
653 653
                 'ignore_errors' => false,
654 654
                 'timeout' => 60,
655 655
                 'header' => array(
656
-                    'Authorization: ' . base64_encode($authKey),
657
-                    'x-eccube-store-url: ' . base64_encode($request->getSchemeAndHttpHost() . $request->getBasePath()),
658
-                    'x-eccube-store-version: ' . base64_encode(Constant::VERSION)
656
+                    'Authorization: '.base64_encode($authKey),
657
+                    'x-eccube-store-url: '.base64_encode($request->getSchemeAndHttpHost().$request->getBasePath()),
658
+                    'x-eccube-store-version: '.base64_encode(Constant::VERSION)
659 659
                 )
660 660
             )
661 661
         );
@@ -680,10 +680,10 @@  discard block
 block discarded – undo
680 680
 
681 681
             switch ($statusCode) {
682 682
                 case '404':
683
-                    $message = $statusCode . ' : ' . $message;
683
+                    $message = $statusCode.' : '.$message;
684 684
                     break;
685 685
                 case '500':
686
-                    $message = $statusCode . ' : ' . $message;
686
+                    $message = $statusCode.' : '.$message;
687 687
                     break;
688 688
                 default:
689 689
                     $message = "EC-CUBEオーナーズストアにエラーが発生しています。";
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Store/TemplateController.php 1 patch
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -65,15 +65,15 @@  discard block
 block discarded – undo
65 65
                     ->find($form['selected']->getData());
66 66
 
67 67
                 // path.ymlの再構築
68
-                $file = $app['config']['root_dir'] . '/app/config/eccube/path.yml';
68
+                $file = $app['config']['root_dir'].'/app/config/eccube/path.yml';
69 69
                 $config = Yaml::parse($file);
70 70
 
71 71
                 $templateCode = $Template->getCode();
72 72
                 $config['template_code'] = $templateCode;
73
-                $config['template_realdir'] = $config['root_dir'] . '/app/template/' . $templateCode;
74
-                $config['template_html_realdir'] = $config['root_dir'] . '/html/template/' . $templateCode;
75
-                $config['front_urlpath'] = $config['root_urlpath'] . '/template/' . $templateCode;
76
-                $config['block_realdir'] =$config['template_realdir'] . '/Block';
73
+                $config['template_realdir'] = $config['root_dir'].'/app/template/'.$templateCode;
74
+                $config['template_html_realdir'] = $config['root_dir'].'/html/template/'.$templateCode;
75
+                $config['front_urlpath'] = $config['root_urlpath'].'/template/'.$templateCode;
76
+                $config['block_realdir'] = $config['template_realdir'].'/Block';
77 77
 
78 78
                 file_put_contents($file, Yaml::dump($config));
79 79
 
@@ -108,19 +108,19 @@  discard block
 block discarded – undo
108 108
         // 該当テンプレートのディレクトリ
109 109
         $config = $app['config'];
110 110
         $templateCode = $Template->getCode();
111
-        $targetRealDir = $config['root_dir'] . '/app/template/' . $templateCode;
112
-        $targetHtmlRealDir = $config['root_dir'] . '/html/template/' . $templateCode;
111
+        $targetRealDir = $config['root_dir'].'/app/template/'.$templateCode;
112
+        $targetHtmlRealDir = $config['root_dir'].'/html/template/'.$templateCode;
113 113
 
114 114
         // 一時ディレクトリ
115 115
         $uniqId = sha1(Str::random(32));
116
-        $tmpDir = $config['template_temp_realdir'] . '/' . $uniqId;
117
-        $appDir = $tmpDir . '/app';
118
-        $htmlDir = $tmpDir . '/html';
116
+        $tmpDir = $config['template_temp_realdir'].'/'.$uniqId;
117
+        $appDir = $tmpDir.'/app';
118
+        $htmlDir = $tmpDir.'/html';
119 119
 
120 120
         // ファイル名
121
-        $tarFile = $config['template_temp_realdir'] . '/' . $uniqId . '.tar';
122
-        $tarGzFile = $tarFile . '.gz';
123
-        $downloadFileName = $Template->getCode() . '.tar.gz';
121
+        $tarFile = $config['template_temp_realdir'].'/'.$uniqId.'.tar';
122
+        $tarGzFile = $tarFile.'.gz';
123
+        $downloadFileName = $Template->getCode().'.tar.gz';
124 124
 
125 125
         // 該当テンプレートを一時ディレクトリへコピーする.
126 126
         $fs = new Filesystem();
@@ -140,14 +140,14 @@  discard block
 block discarded – undo
140 140
 
141 141
         // ダウンロード完了後にファイルを削除する.
142 142
         // http://stackoverflow.com/questions/15238897/removing-file-after-delivering-response-with-silex-symfony
143
-        $app->finish(function (Request $request, Response $response, \Silex\Application $app) use (
143
+        $app->finish(function(Request $request, Response $response, \Silex\Application $app) use (
144 144
             $tmpDir,
145 145
             $tarFile,
146 146
             $tarGzFile
147 147
         ) {
148
-            $app['monolog']->addDebug('remove temp file: ' . $tmpDir);
149
-            $app['monolog']->addDebug('remove temp file: ' . $tarFile);
150
-            $app['monolog']->addDebug('remove temp file: ' . $tarGzFile);
148
+            $app['monolog']->addDebug('remove temp file: '.$tmpDir);
149
+            $app['monolog']->addDebug('remove temp file: '.$tarFile);
150
+            $app['monolog']->addDebug('remove temp file: '.$tarGzFile);
151 151
             $fs = new Filesystem();
152 152
             $fs->remove($tmpDir);
153 153
             $fs->remove($tarFile);
@@ -188,8 +188,8 @@  discard block
 block discarded – undo
188 188
         // テンプレートディレクトリの削除
189 189
         $config = $app['config'];
190 190
         $templateCode = $Template->getCode();
191
-        $targetRealDir = $config['root_dir'] . '/app/template/' . $templateCode;
192
-        $targetHtmlRealDir = $config['root_dir'] . '/html/template/' . $templateCode;
191
+        $targetRealDir = $config['root_dir'].'/app/template/'.$templateCode;
192
+        $targetHtmlRealDir = $config['root_dir'].'/html/template/'.$templateCode;
193 193
 
194 194
         $fs = new Filesystem();
195 195
         $fs->remove($targetRealDir);
@@ -232,18 +232,18 @@  discard block
 block discarded – undo
232 232
                 // 該当テンプレートのディレクトリ
233 233
                 $config = $app['config'];
234 234
                 $templateCode = $Template->getCode();
235
-                $targetRealDir = $config['root_dir'] . '/app/template/' . $templateCode;
236
-                $targetHtmlRealDir = $config['root_dir'] . '/html/template/' . $templateCode;
235
+                $targetRealDir = $config['root_dir'].'/app/template/'.$templateCode;
236
+                $targetHtmlRealDir = $config['root_dir'].'/html/template/'.$templateCode;
237 237
 
238 238
                 // 一時ディレクトリ
239 239
                 $uniqId = sha1(Str::random(32));
240
-                $tmpDir = $config['template_temp_realdir'] . '/' . $uniqId;
241
-                $appDir = $tmpDir . '/app';
242
-                $htmlDir = $tmpDir . '/html';
240
+                $tmpDir = $config['template_temp_realdir'].'/'.$uniqId;
241
+                $appDir = $tmpDir.'/app';
242
+                $htmlDir = $tmpDir.'/html';
243 243
 
244 244
                 $formFile = $form['file']->getData();
245 245
                 // ファイル名
246
-                $archive = $templateCode . '.' . $formFile->getClientOriginalExtension();
246
+                $archive = $templateCode.'.'.$formFile->getClientOriginalExtension();
247 247
 
248 248
                 // ファイルを一時ディレクトリへ移動.
249 249
                 $formFile->move($tmpDir, $archive);
@@ -252,11 +252,11 @@  discard block
 block discarded – undo
252 252
                 try {
253 253
                     if ($formFile->getClientOriginalExtension() == 'zip') {
254 254
                         $zip = new \ZipArchive();
255
-                        $zip->open($tmpDir . '/' . $archive);
255
+                        $zip->open($tmpDir.'/'.$archive);
256 256
                         $zip->extractTo($tmpDir);
257 257
                         $zip->close();
258 258
                     } else {
259
-                        $phar = new \PharData($tmpDir . '/' . $archive);
259
+                        $phar = new \PharData($tmpDir.'/'.$archive);
260 260
                         $phar->extractTo($tmpDir, null, true);
261 261
                     }
262 262
                 } catch (\Exception $e) {
Please login to merge, or discard this patch.
src/Eccube/Controller/BlockController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
 
39 39
         if ($app['eccube.layout']) {
40 40
             foreach ($app['eccube.layout']->getBlocPositions() as $blocPositions) {
41
-                if ($blocPositions->getTargetId() == constant("Eccube\Entity\BlocPosition::" . $position)) {
41
+                if ($blocPositions->getTargetId() == constant("Eccube\Entity\BlocPosition::".$position)) {
42 42
                     $blocks[] = $blocPositions->getBloc();
43 43
                 }
44 44
             }
Please login to merge, or discard this patch.