@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | } |
| 125 | 125 | } |
| 126 | 126 | |
| 127 | - $builder->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) use ($Product) { |
|
| 127 | + $builder->addEventListener(FormEvents::PRE_SUBMIT, function(FormEvent $event) use ($Product) { |
|
| 128 | 128 | $data = $event->getData(); |
| 129 | 129 | $form = $event->getForm(); |
| 130 | 130 | if (isset($data['classcategory_id1']) && !is_null($Product->getClassName2())) { |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | } |
| 138 | 138 | }); |
| 139 | 139 | |
| 140 | - $builder->addEventListener(FormEvents::POST_SUBMIT, function (FormEvent $event) { |
|
| 140 | + $builder->addEventListener(FormEvents::POST_SUBMIT, function(FormEvent $event) { |
|
| 141 | 141 | /** @var CartItem $CartItem */ |
| 142 | 142 | $CartItem = $event->getData(); |
| 143 | 143 | $ProductClass = $CartItem->getProductClass(); |
@@ -42,7 +42,7 @@ |
||
| 42 | 42 | |
| 43 | 43 | /** |
| 44 | 44 | * @deprecated 呼び出し元で制御する |
| 45 | - * @param $id |
|
| 45 | + * @param integer $id |
|
| 46 | 46 | * @return Delivery|null|object |
| 47 | 47 | */ |
| 48 | 48 | public function findOrCreate($id) |
@@ -188,7 +188,7 @@ discard block |
||
| 188 | 188 | foreach ($data as $row) { |
| 189 | 189 | |
| 190 | 190 | if ($headerSize != count($row)) { |
| 191 | - $this->addErrors(($data->key() + 1) . '行目のCSVフォーマットが一致しません。'); |
|
| 191 | + $this->addErrors(($data->key() + 1).'行目のCSVフォーマットが一致しません。'); |
|
| 192 | 192 | return $this->render($app, $form, $headers); |
| 193 | 193 | } |
| 194 | 194 | |
@@ -199,33 +199,33 @@ discard block |
||
| 199 | 199 | if (preg_match('/^\d+$/', $row['商品ID'])) { |
| 200 | 200 | $Product = $this->productRepository->find($row['商品ID']); |
| 201 | 201 | if (!$Product) { |
| 202 | - $this->addErrors(($data->key() + 1) . '行目の商品IDが存在しません。'); |
|
| 202 | + $this->addErrors(($data->key() + 1).'行目の商品IDが存在しません。'); |
|
| 203 | 203 | return $this->render($app, $form, $headers); |
| 204 | 204 | } |
| 205 | 205 | } else { |
| 206 | - $this->addErrors(($data->key() + 1) . '行目の商品IDが存在しません。'); |
|
| 206 | + $this->addErrors(($data->key() + 1).'行目の商品IDが存在しません。'); |
|
| 207 | 207 | return $this->render($app, $form, $headers); |
| 208 | 208 | } |
| 209 | 209 | |
| 210 | 210 | } |
| 211 | 211 | |
| 212 | 212 | if ($row['公開ステータス(ID)'] == '') { |
| 213 | - $this->addErrors(($data->key() + 1) . '行目の公開ステータス(ID)が設定されていません。'); |
|
| 213 | + $this->addErrors(($data->key() + 1).'行目の公開ステータス(ID)が設定されていません。'); |
|
| 214 | 214 | } else { |
| 215 | 215 | if (preg_match('/^\d+$/', $row['公開ステータス(ID)'])) { |
| 216 | 216 | $ProductStatus = $this->productStatusRepository->find($row['公開ステータス(ID)']); |
| 217 | 217 | if (!$ProductStatus) { |
| 218 | - $this->addErrors(($data->key() + 1) . '行目の公開ステータス(ID)が存在しません。'); |
|
| 218 | + $this->addErrors(($data->key() + 1).'行目の公開ステータス(ID)が存在しません。'); |
|
| 219 | 219 | } else { |
| 220 | 220 | $Product->setStatus($ProductStatus); |
| 221 | 221 | } |
| 222 | 222 | } else { |
| 223 | - $this->addErrors(($data->key() + 1) . '行目の公開ステータス(ID)が存在しません。'); |
|
| 223 | + $this->addErrors(($data->key() + 1).'行目の公開ステータス(ID)が存在しません。'); |
|
| 224 | 224 | } |
| 225 | 225 | } |
| 226 | 226 | |
| 227 | 227 | if (Str::isBlank($row['商品名'])) { |
| 228 | - $this->addErrors(($data->key() + 1) . '行目の商品名が設定されていません。'); |
|
| 228 | + $this->addErrors(($data->key() + 1).'行目の商品名が設定されていません。'); |
|
| 229 | 229 | return $this->render($app, $form, $headers); |
| 230 | 230 | } else { |
| 231 | 231 | $Product->setName(Str::trimAll($row['商品名'])); |
@@ -284,7 +284,7 @@ discard block |
||
| 284 | 284 | if (preg_match('/^\d+$/', $deliveryFee) && $deliveryFee >= 0) { |
| 285 | 285 | $ProductClassOrg->setDeliveryFee($deliveryFee); |
| 286 | 286 | } else { |
| 287 | - $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。'); |
|
| 287 | + $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。'); |
|
| 288 | 288 | } |
| 289 | 289 | } |
| 290 | 290 | } |
@@ -292,7 +292,7 @@ discard block |
||
| 292 | 292 | if ($row['規格分類1(ID)'] != '') { |
| 293 | 293 | |
| 294 | 294 | if ($row['規格分類1(ID)'] == $row['規格分類2(ID)']) { |
| 295 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。'); |
|
| 295 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。'); |
|
| 296 | 296 | } else { |
| 297 | 297 | // 商品規格あり |
| 298 | 298 | // 企画分類あり商品を作成 |
@@ -307,30 +307,30 @@ discard block |
||
| 307 | 307 | if (preg_match('/^\d+$/', $row['規格分類1(ID)'])) { |
| 308 | 308 | $ClassCategory1 = $this->classCategoryRepository->find($row['規格分類1(ID)']); |
| 309 | 309 | if (!$ClassCategory1) { |
| 310 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
| 310 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
| 311 | 311 | } else { |
| 312 | 312 | $ProductClass->setClassCategory1($ClassCategory1); |
| 313 | 313 | } |
| 314 | 314 | } else { |
| 315 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
| 315 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
| 316 | 316 | } |
| 317 | 317 | |
| 318 | 318 | if ($row['規格分類2(ID)'] != '') { |
| 319 | 319 | if (preg_match('/^\d+$/', $row['規格分類2(ID)'])) { |
| 320 | 320 | $ClassCategory2 = $this->classCategoryRepository->find($row['規格分類2(ID)']); |
| 321 | 321 | if (!$ClassCategory2) { |
| 322 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。'); |
|
| 322 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。'); |
|
| 323 | 323 | } else { |
| 324 | 324 | if ($ClassCategory1 && |
| 325 | 325 | ($ClassCategory1->getClassName()->getId() == $ClassCategory2->getClassName()->getId()) |
| 326 | 326 | ) { |
| 327 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。'); |
|
| 327 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。'); |
|
| 328 | 328 | } else { |
| 329 | 329 | $ProductClass->setClassCategory2($ClassCategory2); |
| 330 | 330 | } |
| 331 | 331 | } |
| 332 | 332 | } else { |
| 333 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。'); |
|
| 333 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。'); |
|
| 334 | 334 | } |
| 335 | 335 | } |
| 336 | 336 | $ProductClass->setProductStock($ProductStock); |
@@ -342,7 +342,7 @@ discard block |
||
| 342 | 342 | |
| 343 | 343 | } else { |
| 344 | 344 | if ($row['規格分類2(ID)'] != '') { |
| 345 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
| 345 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
| 346 | 346 | } |
| 347 | 347 | } |
| 348 | 348 | |
@@ -370,7 +370,7 @@ discard block |
||
| 370 | 370 | if (preg_match('/^\d+$/', $deliveryFee) && $deliveryFee >= 0) { |
| 371 | 371 | $pc->setDeliveryFee($deliveryFee); |
| 372 | 372 | } else { |
| 373 | - $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。'); |
|
| 373 | + $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。'); |
|
| 374 | 374 | } |
| 375 | 375 | } |
| 376 | 376 | } |
@@ -392,7 +392,7 @@ discard block |
||
| 392 | 392 | } |
| 393 | 393 | |
| 394 | 394 | if ($row['規格分類1(ID)'] == $row['規格分類2(ID)']) { |
| 395 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。'); |
|
| 395 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。'); |
|
| 396 | 396 | } else { |
| 397 | 397 | |
| 398 | 398 | // 必ず規格分類1がセットされている |
@@ -401,36 +401,36 @@ discard block |
||
| 401 | 401 | if (preg_match('/^\d+$/', $classCategoryId1)) { |
| 402 | 402 | $ClassCategory1 = $this->classCategoryRepository->find($classCategoryId1); |
| 403 | 403 | if (!$ClassCategory1) { |
| 404 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
| 404 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
| 405 | 405 | } |
| 406 | 406 | } else { |
| 407 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
| 407 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
| 408 | 408 | } |
| 409 | 409 | |
| 410 | 410 | $ClassCategory2 = null; |
| 411 | 411 | if ($row['規格分類2(ID)'] != '') { |
| 412 | 412 | if ($pc->getClassCategory1() != null && $pc->getClassCategory2() == null) { |
| 413 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)は設定できません。'); |
|
| 413 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)は設定できません。'); |
|
| 414 | 414 | } else { |
| 415 | 415 | if (preg_match('/^\d+$/', $classCategoryId2)) { |
| 416 | 416 | $ClassCategory2 = $this->classCategoryRepository->find($classCategoryId2); |
| 417 | 417 | if (!$ClassCategory2) { |
| 418 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。'); |
|
| 418 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。'); |
|
| 419 | 419 | } else { |
| 420 | 420 | if ($ClassCategory1 && |
| 421 | 421 | ($ClassCategory1->getClassName()->getId() == $ClassCategory2->getClassName()->getId()) |
| 422 | 422 | ) { |
| 423 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。'); |
|
| 423 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。'); |
|
| 424 | 424 | } |
| 425 | 425 | } |
| 426 | 426 | } else { |
| 427 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。'); |
|
| 427 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。'); |
|
| 428 | 428 | } |
| 429 | 429 | |
| 430 | 430 | } |
| 431 | 431 | } else { |
| 432 | 432 | if ($pc->getClassCategory1() != null && $pc->getClassCategory2() != null) { |
| 433 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)に値を設定してください。'); |
|
| 433 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)に値を設定してください。'); |
|
| 434 | 434 | } |
| 435 | 435 | } |
| 436 | 436 | $ProductClass = $this->createProductClass($row, $Product, $app, $data, $ClassCategory1, $ClassCategory2); |
@@ -441,7 +441,7 @@ discard block |
||
| 441 | 441 | if (preg_match('/^\d+$/', $deliveryFee) && $deliveryFee >= 0) { |
| 442 | 442 | $ProductClass->setDeliveryFee($deliveryFee); |
| 443 | 443 | } else { |
| 444 | - $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。'); |
|
| 444 | + $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。'); |
|
| 445 | 445 | } |
| 446 | 446 | } |
| 447 | 447 | } |
@@ -531,7 +531,7 @@ discard block |
||
| 531 | 531 | foreach ($data as $row) { |
| 532 | 532 | |
| 533 | 533 | if ($headerSize != count($row)) { |
| 534 | - $this->addErrors(($data->key() + 1) . '行目のCSVフォーマットが一致しません。'); |
|
| 534 | + $this->addErrors(($data->key() + 1).'行目のCSVフォーマットが一致しません。'); |
|
| 535 | 535 | return $this->render($app, $form, $headers); |
| 536 | 536 | } |
| 537 | 537 | |
@@ -539,23 +539,23 @@ discard block |
||
| 539 | 539 | $Category = new Category(); |
| 540 | 540 | } else { |
| 541 | 541 | if (!preg_match('/^\d+$/', $row['カテゴリID'])) { |
| 542 | - $this->addErrors(($data->key() + 1) . '行目のカテゴリIDが存在しません。'); |
|
| 542 | + $this->addErrors(($data->key() + 1).'行目のカテゴリIDが存在しません。'); |
|
| 543 | 543 | return $this->render($app, $form, $headers); |
| 544 | 544 | } |
| 545 | 545 | $Category = $this->categoryRepository->find($row['カテゴリID']); |
| 546 | 546 | if (!$Category) { |
| 547 | - $this->addErrors(($data->key() + 1) . '行目のカテゴリIDが存在しません。'); |
|
| 547 | + $this->addErrors(($data->key() + 1).'行目のカテゴリIDが存在しません。'); |
|
| 548 | 548 | return $this->render($app, $form, $headers); |
| 549 | 549 | } |
| 550 | 550 | if ($row['カテゴリID'] == $row['親カテゴリID']) { |
| 551 | - $this->addErrors(($data->key() + 1) . '行目のカテゴリIDと親カテゴリIDが同じです。'); |
|
| 551 | + $this->addErrors(($data->key() + 1).'行目のカテゴリIDと親カテゴリIDが同じです。'); |
|
| 552 | 552 | return $this->render($app, $form, $headers); |
| 553 | 553 | } |
| 554 | 554 | |
| 555 | 555 | } |
| 556 | 556 | |
| 557 | 557 | if (Str::isBlank($row['カテゴリ名'])) { |
| 558 | - $this->addErrors(($data->key() + 1) . '行目のカテゴリ名が設定されていません。'); |
|
| 558 | + $this->addErrors(($data->key() + 1).'行目のカテゴリ名が設定されていません。'); |
|
| 559 | 559 | return $this->render($app, $form, $headers); |
| 560 | 560 | } else { |
| 561 | 561 | $Category->setName(Str::trimAll($row['カテゴリ名'])); |
@@ -564,13 +564,13 @@ discard block |
||
| 564 | 564 | if ($row['親カテゴリID'] != '') { |
| 565 | 565 | |
| 566 | 566 | if (!preg_match('/^\d+$/', $row['親カテゴリID'])) { |
| 567 | - $this->addErrors(($data->key() + 1) . '行目の親カテゴリIDが存在しません。'); |
|
| 567 | + $this->addErrors(($data->key() + 1).'行目の親カテゴリIDが存在しません。'); |
|
| 568 | 568 | return $this->render($app, $form, $headers); |
| 569 | 569 | } |
| 570 | 570 | |
| 571 | 571 | $ParentCategory = $this->categoryRepository->find($row['親カテゴリID']); |
| 572 | 572 | if (!$ParentCategory) { |
| 573 | - $this->addErrors(($data->key() + 1) . '行目の親カテゴリIDが存在しません。'); |
|
| 573 | + $this->addErrors(($data->key() + 1).'行目の親カテゴリIDが存在しません。'); |
|
| 574 | 574 | return $this->render($app, $form, $headers); |
| 575 | 575 | } |
| 576 | 576 | |
@@ -586,7 +586,7 @@ discard block |
||
| 586 | 586 | } |
| 587 | 587 | |
| 588 | 588 | if ($this->appConfig['category_nest_level'] < $Category->getHierarchy()) { |
| 589 | - $this->addErrors(($data->key() + 1) . '行目のカテゴリが最大レベルを超えているため設定できません。'); |
|
| 589 | + $this->addErrors(($data->key() + 1).'行目のカテゴリが最大レベルを超えているため設定できません。'); |
|
| 590 | 590 | return $this->render($app, $form, $headers); |
| 591 | 591 | } |
| 592 | 592 | |
@@ -636,7 +636,7 @@ discard block |
||
| 636 | 636 | throw new NotFoundHttpException(); |
| 637 | 637 | } |
| 638 | 638 | |
| 639 | - $response->setCallback(function () use ($app, $request, $headers) { |
|
| 639 | + $response->setCallback(function() use ($app, $request, $headers) { |
|
| 640 | 640 | |
| 641 | 641 | // ヘッダ行の出力 |
| 642 | 642 | $row = array(); |
@@ -651,7 +651,7 @@ discard block |
||
| 651 | 651 | }); |
| 652 | 652 | |
| 653 | 653 | $response->headers->set('Content-Type', 'application/octet-stream'); |
| 654 | - $response->headers->set('Content-Disposition', 'attachment; filename=' . $filename); |
|
| 654 | + $response->headers->set('Content-Disposition', 'attachment; filename='.$filename); |
|
| 655 | 655 | $response->send(); |
| 656 | 656 | |
| 657 | 657 | return $response; |
@@ -674,7 +674,7 @@ discard block |
||
| 674 | 674 | if (!empty($this->fileName)) { |
| 675 | 675 | try { |
| 676 | 676 | $fs = new Filesystem(); |
| 677 | - $fs->remove($this->appConfig['csv_temp_realdir'] . '/' . $this->fileName); |
|
| 677 | + $fs->remove($this->appConfig['csv_temp_realdir'].'/'.$this->fileName); |
|
| 678 | 678 | } catch (\Exception $e) { |
| 679 | 679 | // エラーが発生しても無視する |
| 680 | 680 | } |
@@ -697,10 +697,10 @@ discard block |
||
| 697 | 697 | protected function getImportData($app, $formFile) |
| 698 | 698 | { |
| 699 | 699 | // アップロードされたCSVファイルを一時ディレクトリに保存 |
| 700 | - $this->fileName = 'upload_' . Str::random() . '.' . $formFile->getClientOriginalExtension(); |
|
| 700 | + $this->fileName = 'upload_'.Str::random().'.'.$formFile->getClientOriginalExtension(); |
|
| 701 | 701 | $formFile->move($this->appConfig['csv_temp_realdir'], $this->fileName); |
| 702 | 702 | |
| 703 | - $file = file_get_contents($this->appConfig['csv_temp_realdir'] . '/' . $this->fileName); |
|
| 703 | + $file = file_get_contents($this->appConfig['csv_temp_realdir'].'/'.$this->fileName); |
|
| 704 | 704 | |
| 705 | 705 | if ('\\' === DIRECTORY_SEPARATOR && PHP_VERSION_ID >= 70000) { |
| 706 | 706 | // Windows 環境の PHP7 の場合はファイルエンコーディングを CP932 に合わせる |
@@ -796,8 +796,8 @@ discard block |
||
| 796 | 796 | if (!$Category) { |
| 797 | 797 | $this->addErrors(($data->key() + 1).'行目の商品カテゴリ(ID)「'.$category.'」が存在しません。'); |
| 798 | 798 | } else { |
| 799 | - foreach($Category->getPath() as $ParentCategory){ |
|
| 800 | - if (!isset($categoriesIdList[$ParentCategory->getId()])){ |
|
| 799 | + foreach ($Category->getPath() as $ParentCategory) { |
|
| 800 | + if (!isset($categoriesIdList[$ParentCategory->getId()])) { |
|
| 801 | 801 | $ProductCategory = $this->makeProductCategory($Product, $ParentCategory, $rank); |
| 802 | 802 | $this->entityManager->persist($ProductCategory); |
| 803 | 803 | $rank++; |
@@ -805,7 +805,7 @@ discard block |
||
| 805 | 805 | $categoriesIdList[$ParentCategory->getId()] = true; |
| 806 | 806 | } |
| 807 | 807 | } |
| 808 | - if (!isset($categoriesIdList[$Category->getId()])){ |
|
| 808 | + if (!isset($categoriesIdList[$Category->getId()])) { |
|
| 809 | 809 | $ProductCategory = $this->makeProductCategory($Product, $Category, $rank); |
| 810 | 810 | $rank++; |
| 811 | 811 | $this->em->persist($ProductCategory); |
@@ -860,7 +860,7 @@ discard block |
||
| 860 | 860 | } |
| 861 | 861 | } |
| 862 | 862 | if (!$Tag) { |
| 863 | - $this->addErrors(($data->key() + 1) . '行目のタグ(ID)「' . $tag_id . '」が存在しません。'); |
|
| 863 | + $this->addErrors(($data->key() + 1).'行目のタグ(ID)「'.$tag_id.'」が存在しません。'); |
|
| 864 | 864 | } |
| 865 | 865 | } |
| 866 | 866 | } |
@@ -879,17 +879,17 @@ discard block |
||
| 879 | 879 | |
| 880 | 880 | |
| 881 | 881 | if ($row['販売種別(ID)'] == '') { |
| 882 | - $this->addErrors(($data->key() + 1) . '行目の販売種別(ID)が設定されていません。'); |
|
| 882 | + $this->addErrors(($data->key() + 1).'行目の販売種別(ID)が設定されていません。'); |
|
| 883 | 883 | } else { |
| 884 | 884 | if (preg_match('/^\d+$/', $row['販売種別(ID)'])) { |
| 885 | 885 | $SaleType = $this->saleTypeRepository->find($row['販売種別(ID)']); |
| 886 | 886 | if (!$SaleType) { |
| 887 | - $this->addErrors(($data->key() + 1) . '行目の販売種別(ID)が存在しません。'); |
|
| 887 | + $this->addErrors(($data->key() + 1).'行目の販売種別(ID)が存在しません。'); |
|
| 888 | 888 | } else { |
| 889 | 889 | $ProductClass->setSaleType($SaleType); |
| 890 | 890 | } |
| 891 | 891 | } else { |
| 892 | - $this->addErrors(($data->key() + 1) . '行目の販売種別(ID)が存在しません。'); |
|
| 892 | + $this->addErrors(($data->key() + 1).'行目の販売種別(ID)が存在しません。'); |
|
| 893 | 893 | } |
| 894 | 894 | } |
| 895 | 895 | |
@@ -900,12 +900,12 @@ discard block |
||
| 900 | 900 | if (preg_match('/^\d+$/', $row['発送日目安(ID)'])) { |
| 901 | 901 | $DeliveryDate = $this->deliveryDateRepository->find($row['発送日目安(ID)']); |
| 902 | 902 | if (!$DeliveryDate) { |
| 903 | - $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。'); |
|
| 903 | + $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。'); |
|
| 904 | 904 | } else { |
| 905 | 905 | $ProductClass->setDeliveryDate($DeliveryDate); |
| 906 | 906 | } |
| 907 | 907 | } else { |
| 908 | - $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。'); |
|
| 908 | + $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。'); |
|
| 909 | 909 | } |
| 910 | 910 | } |
| 911 | 911 | |
@@ -916,19 +916,19 @@ discard block |
||
| 916 | 916 | } |
| 917 | 917 | |
| 918 | 918 | if ($row['在庫数無制限フラグ'] == '') { |
| 919 | - $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。'); |
|
| 919 | + $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。'); |
|
| 920 | 920 | } else { |
| 921 | 921 | if ($row['在庫数無制限フラグ'] == (string) Constant::DISABLED) { |
| 922 | 922 | $ProductClass->setStockUnlimited(false); |
| 923 | 923 | // 在庫数が設定されていなければエラー |
| 924 | 924 | if ($row['在庫数'] == '') { |
| 925 | - $this->addErrors(($data->key() + 1) . '行目の在庫数が設定されていません。'); |
|
| 925 | + $this->addErrors(($data->key() + 1).'行目の在庫数が設定されていません。'); |
|
| 926 | 926 | } else { |
| 927 | 927 | $stock = str_replace(',', '', $row['在庫数']); |
| 928 | 928 | if (preg_match('/^\d+$/', $stock) && $stock >= 0) { |
| 929 | 929 | $ProductClass->setStock($stock); |
| 930 | 930 | } else { |
| 931 | - $this->addErrors(($data->key() + 1) . '行目の在庫数は0以上の数値を設定してください。'); |
|
| 931 | + $this->addErrors(($data->key() + 1).'行目の在庫数は0以上の数値を設定してください。'); |
|
| 932 | 932 | } |
| 933 | 933 | } |
| 934 | 934 | |
@@ -936,7 +936,7 @@ discard block |
||
| 936 | 936 | $ProductClass->setStockUnlimited(true); |
| 937 | 937 | $ProductClass->setStock(null); |
| 938 | 938 | } else { |
| 939 | - $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。'); |
|
| 939 | + $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。'); |
|
| 940 | 940 | } |
| 941 | 941 | } |
| 942 | 942 | |
@@ -945,7 +945,7 @@ discard block |
||
| 945 | 945 | if (preg_match('/^\d+$/', $saleLimit) && $saleLimit >= 0) { |
| 946 | 946 | $ProductClass->setSaleLimit($saleLimit); |
| 947 | 947 | } else { |
| 948 | - $this->addErrors(($data->key() + 1) . '行目の販売制限数は0以上の数値を設定してください。'); |
|
| 948 | + $this->addErrors(($data->key() + 1).'行目の販売制限数は0以上の数値を設定してください。'); |
|
| 949 | 949 | } |
| 950 | 950 | } |
| 951 | 951 | |
@@ -954,18 +954,18 @@ discard block |
||
| 954 | 954 | if (preg_match('/^\d+$/', $price01) && $price01 >= 0) { |
| 955 | 955 | $ProductClass->setPrice01($price01); |
| 956 | 956 | } else { |
| 957 | - $this->addErrors(($data->key() + 1) . '行目の通常価格は0以上の数値を設定してください。'); |
|
| 957 | + $this->addErrors(($data->key() + 1).'行目の通常価格は0以上の数値を設定してください。'); |
|
| 958 | 958 | } |
| 959 | 959 | } |
| 960 | 960 | |
| 961 | 961 | if ($row['販売価格'] == '') { |
| 962 | - $this->addErrors(($data->key() + 1) . '行目の販売価格が設定されていません。'); |
|
| 962 | + $this->addErrors(($data->key() + 1).'行目の販売価格が設定されていません。'); |
|
| 963 | 963 | } else { |
| 964 | 964 | $price02 = str_replace(',', '', $row['販売価格']); |
| 965 | 965 | if (preg_match('/^\d+$/', $price02) && $price02 >= 0) { |
| 966 | 966 | $ProductClass->setPrice02($price02); |
| 967 | 967 | } else { |
| 968 | - $this->addErrors(($data->key() + 1) . '行目の販売価格は0以上の数値を設定してください。'); |
|
| 968 | + $this->addErrors(($data->key() + 1).'行目の販売価格は0以上の数値を設定してください。'); |
|
| 969 | 969 | } |
| 970 | 970 | } |
| 971 | 971 | |
@@ -974,7 +974,7 @@ discard block |
||
| 974 | 974 | if (preg_match('/^\d+$/', $delivery_fee) && $delivery_fee >= 0) { |
| 975 | 975 | $ProductClass->setDeliveryFee($delivery_fee); |
| 976 | 976 | } else { |
| 977 | - $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。'); |
|
| 977 | + $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。'); |
|
| 978 | 978 | } |
| 979 | 979 | } |
| 980 | 980 | |
@@ -1007,17 +1007,17 @@ discard block |
||
| 1007 | 1007 | $ProductClass->setProduct($Product); |
| 1008 | 1008 | |
| 1009 | 1009 | if ($row['販売種別(ID)'] == '') { |
| 1010 | - $this->addErrors(($data->key() + 1) . '行目の販売種別(ID)が設定されていません。'); |
|
| 1010 | + $this->addErrors(($data->key() + 1).'行目の販売種別(ID)が設定されていません。'); |
|
| 1011 | 1011 | } else { |
| 1012 | 1012 | if (preg_match('/^\d+$/', $row['販売種別(ID)'])) { |
| 1013 | 1013 | $SaleType = $this->saleTypeRepository->find($row['販売種別(ID)']); |
| 1014 | 1014 | if (!$SaleType) { |
| 1015 | - $this->addErrors(($data->key() + 1) . '行目の販売種別(ID)が存在しません。'); |
|
| 1015 | + $this->addErrors(($data->key() + 1).'行目の販売種別(ID)が存在しません。'); |
|
| 1016 | 1016 | } else { |
| 1017 | 1017 | $ProductClass->setSaleType($SaleType); |
| 1018 | 1018 | } |
| 1019 | 1019 | } else { |
| 1020 | - $this->addErrors(($data->key() + 1) . '行目の販売種別(ID)が存在しません。'); |
|
| 1020 | + $this->addErrors(($data->key() + 1).'行目の販売種別(ID)が存在しません。'); |
|
| 1021 | 1021 | } |
| 1022 | 1022 | } |
| 1023 | 1023 | |
@@ -1026,12 +1026,12 @@ discard block |
||
| 1026 | 1026 | if (preg_match('/^\d+$/', $row['規格分類1(ID)'])) { |
| 1027 | 1027 | $ClassCategory = $this->classCategoryRepository->find($row['規格分類1(ID)']); |
| 1028 | 1028 | if (!$ClassCategory) { |
| 1029 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
| 1029 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
| 1030 | 1030 | } else { |
| 1031 | 1031 | $ProductClass->setClassCategory1($ClassCategory); |
| 1032 | 1032 | } |
| 1033 | 1033 | } else { |
| 1034 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
| 1034 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
| 1035 | 1035 | } |
| 1036 | 1036 | } |
| 1037 | 1037 | |
@@ -1039,12 +1039,12 @@ discard block |
||
| 1039 | 1039 | if (preg_match('/^\d+$/', $row['規格分類2(ID)'])) { |
| 1040 | 1040 | $ClassCategory = $this->classCategoryRepository->find($row['規格分類2(ID)']); |
| 1041 | 1041 | if (!$ClassCategory) { |
| 1042 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。'); |
|
| 1042 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。'); |
|
| 1043 | 1043 | } else { |
| 1044 | 1044 | $ProductClass->setClassCategory2($ClassCategory); |
| 1045 | 1045 | } |
| 1046 | 1046 | } else { |
| 1047 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。'); |
|
| 1047 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。'); |
|
| 1048 | 1048 | } |
| 1049 | 1049 | } |
| 1050 | 1050 | |
@@ -1052,12 +1052,12 @@ discard block |
||
| 1052 | 1052 | if (preg_match('/^\d+$/', $row['発送日目安(ID)'])) { |
| 1053 | 1053 | $DeliveryDate = $this->deliveryDateRepository->find($row['発送日目安(ID)']); |
| 1054 | 1054 | if (!$DeliveryDate) { |
| 1055 | - $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。'); |
|
| 1055 | + $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。'); |
|
| 1056 | 1056 | } else { |
| 1057 | 1057 | $ProductClass->setDeliveryDate($DeliveryDate); |
| 1058 | 1058 | } |
| 1059 | 1059 | } else { |
| 1060 | - $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。'); |
|
| 1060 | + $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。'); |
|
| 1061 | 1061 | } |
| 1062 | 1062 | } |
| 1063 | 1063 | |
@@ -1068,19 +1068,19 @@ discard block |
||
| 1068 | 1068 | } |
| 1069 | 1069 | |
| 1070 | 1070 | if ($row['在庫数無制限フラグ'] == '') { |
| 1071 | - $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。'); |
|
| 1071 | + $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。'); |
|
| 1072 | 1072 | } else { |
| 1073 | 1073 | if ($row['在庫数無制限フラグ'] == (string) Constant::DISABLED) { |
| 1074 | 1074 | $ProductClass->setStockUnlimited(false); |
| 1075 | 1075 | // 在庫数が設定されていなければエラー |
| 1076 | 1076 | if ($row['在庫数'] == '') { |
| 1077 | - $this->addErrors(($data->key() + 1) . '行目の在庫数が設定されていません。'); |
|
| 1077 | + $this->addErrors(($data->key() + 1).'行目の在庫数が設定されていません。'); |
|
| 1078 | 1078 | } else { |
| 1079 | 1079 | $stock = str_replace(',', '', $row['在庫数']); |
| 1080 | 1080 | if (preg_match('/^\d+$/', $stock) && $stock >= 0) { |
| 1081 | 1081 | $ProductClass->setStock($row['在庫数']); |
| 1082 | 1082 | } else { |
| 1083 | - $this->addErrors(($data->key() + 1) . '行目の在庫数は0以上の数値を設定してください。'); |
|
| 1083 | + $this->addErrors(($data->key() + 1).'行目の在庫数は0以上の数値を設定してください。'); |
|
| 1084 | 1084 | } |
| 1085 | 1085 | } |
| 1086 | 1086 | |
@@ -1088,7 +1088,7 @@ discard block |
||
| 1088 | 1088 | $ProductClass->setStockUnlimited(true); |
| 1089 | 1089 | $ProductClass->setStock(null); |
| 1090 | 1090 | } else { |
| 1091 | - $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。'); |
|
| 1091 | + $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。'); |
|
| 1092 | 1092 | } |
| 1093 | 1093 | } |
| 1094 | 1094 | |
@@ -1097,7 +1097,7 @@ discard block |
||
| 1097 | 1097 | if (preg_match('/^\d+$/', $saleLimit) && $saleLimit >= 0) { |
| 1098 | 1098 | $ProductClass->setSaleLimit($saleLimit); |
| 1099 | 1099 | } else { |
| 1100 | - $this->addErrors(($data->key() + 1) . '行目の販売制限数は0以上の数値を設定してください。'); |
|
| 1100 | + $this->addErrors(($data->key() + 1).'行目の販売制限数は0以上の数値を設定してください。'); |
|
| 1101 | 1101 | } |
| 1102 | 1102 | } |
| 1103 | 1103 | |
@@ -1106,18 +1106,18 @@ discard block |
||
| 1106 | 1106 | if (preg_match('/^\d+$/', $price01) && $price01 >= 0) { |
| 1107 | 1107 | $ProductClass->setPrice01($price01); |
| 1108 | 1108 | } else { |
| 1109 | - $this->addErrors(($data->key() + 1) . '行目の通常価格は0以上の数値を設定してください。'); |
|
| 1109 | + $this->addErrors(($data->key() + 1).'行目の通常価格は0以上の数値を設定してください。'); |
|
| 1110 | 1110 | } |
| 1111 | 1111 | } |
| 1112 | 1112 | |
| 1113 | 1113 | if ($row['販売価格'] == '') { |
| 1114 | - $this->addErrors(($data->key() + 1) . '行目の販売価格が設定されていません。'); |
|
| 1114 | + $this->addErrors(($data->key() + 1).'行目の販売価格が設定されていません。'); |
|
| 1115 | 1115 | } else { |
| 1116 | 1116 | $price02 = str_replace(',', '', $row['販売価格']); |
| 1117 | 1117 | if (preg_match('/^\d+$/', $price02) && $price02 >= 0) { |
| 1118 | 1118 | $ProductClass->setPrice02($price02); |
| 1119 | 1119 | } else { |
| 1120 | - $this->addErrors(($data->key() + 1) . '行目の販売価格は0以上の数値を設定してください。'); |
|
| 1120 | + $this->addErrors(($data->key() + 1).'行目の販売価格は0以上の数値を設定してください。'); |
|
| 1121 | 1121 | } |
| 1122 | 1122 | } |
| 1123 | 1123 | |
@@ -11,163 +11,163 @@ |
||
| 11 | 11 | public function register(Container $app) |
| 12 | 12 | { |
| 13 | 13 | // Repository |
| 14 | - $app['eccube.repository.master.authority'] = function () use ($app) { |
|
| 14 | + $app['eccube.repository.master.authority'] = function() use ($app) { |
|
| 15 | 15 | return $app['Eccube\Repository\Master\AuthorityRepository']; |
| 16 | 16 | }; |
| 17 | - $app['eccube.repository.master.tag'] = function () use ($app) { |
|
| 17 | + $app['eccube.repository.master.tag'] = function() use ($app) { |
|
| 18 | 18 | return $app['Eccube\Repository\Master\TagRepository']; |
| 19 | 19 | }; |
| 20 | - $app['eccube.repository.master.pref'] = function () use ($app) { |
|
| 20 | + $app['eccube.repository.master.pref'] = function() use ($app) { |
|
| 21 | 21 | return $app['Eccube\Repository\Master\PrefRepository']; |
| 22 | 22 | }; |
| 23 | - $app['eccube.repository.master.sex'] = function () use ($app) { |
|
| 23 | + $app['eccube.repository.master.sex'] = function() use ($app) { |
|
| 24 | 24 | return $app['Eccube\Repository\Master\SexRepository']; |
| 25 | 25 | }; |
| 26 | - $app['eccube.repository.master.product_status'] = function () use ($app) { |
|
| 26 | + $app['eccube.repository.master.product_status'] = function() use ($app) { |
|
| 27 | 27 | return $app['Eccube\Repository\Master\ProductStatusRepository']; |
| 28 | 28 | }; |
| 29 | - $app['eccube.repository.master.sale_type'] = function () use ($app) { |
|
| 29 | + $app['eccube.repository.master.sale_type'] = function() use ($app) { |
|
| 30 | 30 | return $app['Eccube\Repository\Master\SaleTypeRepository']; |
| 31 | 31 | }; |
| 32 | - $app['eccube.repository.master.page_max'] = function () use ($app) { |
|
| 32 | + $app['eccube.repository.master.page_max'] = function() use ($app) { |
|
| 33 | 33 | return $app['Eccube\Repository\Master\PageMaxRepository']; |
| 34 | 34 | }; |
| 35 | - $app['eccube.repository.master.order_status'] = function () use ($app) { |
|
| 35 | + $app['eccube.repository.master.order_status'] = function() use ($app) { |
|
| 36 | 36 | return $app['Eccube\Repository\Master\OrderStatusRepository']; |
| 37 | 37 | }; |
| 38 | - $app['eccube.repository.master.product_list_max'] = function () use ($app) { |
|
| 38 | + $app['eccube.repository.master.product_list_max'] = function() use ($app) { |
|
| 39 | 39 | return $app['Eccube\Repository\Master\ProductListMaxRepository']; |
| 40 | 40 | }; |
| 41 | - $app['eccube.repository.master.product_list_order_by'] = function () use ($app) { |
|
| 41 | + $app['eccube.repository.master.product_list_order_by'] = function() use ($app) { |
|
| 42 | 42 | return $app['Eccube\Repository\Master\ProductListOrderByRepository']; |
| 43 | 43 | }; |
| 44 | - $app['eccube.repository.master.device_type'] = function () use ($app) { |
|
| 44 | + $app['eccube.repository.master.device_type'] = function() use ($app) { |
|
| 45 | 45 | return $app['Eccube\Repository\Master\DeviceTypeRepository']; |
| 46 | 46 | }; |
| 47 | - $app['eccube.repository.master.csv_type'] = function () use ($app) { |
|
| 47 | + $app['eccube.repository.master.csv_type'] = function() use ($app) { |
|
| 48 | 48 | return $app['Eccube\Repository\Master\CsvTypeRepository']; |
| 49 | 49 | }; |
| 50 | - $app['eccube.repository.master.order_item_type'] = function () use ($app) { |
|
| 50 | + $app['eccube.repository.master.order_item_type'] = function() use ($app) { |
|
| 51 | 51 | return $app['Eccube\Repository\Master\OrderItemTypeRepository']; |
| 52 | 52 | }; |
| 53 | - $app['eccube.repository.base_info'] = function () use ($app) { |
|
| 53 | + $app['eccube.repository.base_info'] = function() use ($app) { |
|
| 54 | 54 | return $app['Eccube\Repository\BaseInfoRepository']; |
| 55 | 55 | }; |
| 56 | - $app['eccube.repository.delivery'] = function () use ($app) { |
|
| 56 | + $app['eccube.repository.delivery'] = function() use ($app) { |
|
| 57 | 57 | return $app['Eccube\Repository\DeliveryRepository']; |
| 58 | 58 | }; |
| 59 | - $app['eccube.repository.delivery_date'] = function () use ($app) { |
|
| 59 | + $app['eccube.repository.delivery_date'] = function() use ($app) { |
|
| 60 | 60 | return $app['Eccube\Repository\DeliveryDateRepository']; |
| 61 | 61 | }; |
| 62 | - $app['eccube.repository.delivery_fee'] = function () use ($app) { |
|
| 62 | + $app['eccube.repository.delivery_fee'] = function() use ($app) { |
|
| 63 | 63 | return $app['Eccube\Repository\DeliveryFeeRepository']; |
| 64 | 64 | }; |
| 65 | - $app['eccube.repository.delivery_time'] = function () use ($app) { |
|
| 65 | + $app['eccube.repository.delivery_time'] = function() use ($app) { |
|
| 66 | 66 | return $app['Eccube\Repository\DeliveryTimeRepository']; |
| 67 | 67 | }; |
| 68 | - $app['eccube.repository.payment'] = function () use ($app) { |
|
| 68 | + $app['eccube.repository.payment'] = function() use ($app) { |
|
| 69 | 69 | return $app['Eccube\Repository\PaymentRepository']; |
| 70 | 70 | }; |
| 71 | - $app['eccube.repository.payment_option'] = function () use ($app) { |
|
| 71 | + $app['eccube.repository.payment_option'] = function() use ($app) { |
|
| 72 | 72 | return $app['Eccube\Repository\PaymentOptionRepository']; |
| 73 | 73 | }; |
| 74 | - $app['eccube.repository.customer'] = function () use ($app) { |
|
| 74 | + $app['eccube.repository.customer'] = function() use ($app) { |
|
| 75 | 75 | return $app['Eccube\Repository\CustomerRepository']; |
| 76 | 76 | }; |
| 77 | - $app['eccube.repository.news'] = function () use ($app) { |
|
| 77 | + $app['eccube.repository.news'] = function() use ($app) { |
|
| 78 | 78 | return $app['Eccube\Repository\NewsRepository']; |
| 79 | 79 | }; |
| 80 | - $app['eccube.repository.mail_history'] = function () use ($app) { |
|
| 80 | + $app['eccube.repository.mail_history'] = function() use ($app) { |
|
| 81 | 81 | return $app['Eccube\Repository\MailHistoryRepository']; |
| 82 | 82 | }; |
| 83 | - $app['eccube.repository.member'] = function () use ($app) { |
|
| 83 | + $app['eccube.repository.member'] = function() use ($app) { |
|
| 84 | 84 | return $app['Eccube\Repository\MemberRepository']; |
| 85 | 85 | }; |
| 86 | - $app['eccube.repository.order'] = function () use ($app) { |
|
| 86 | + $app['eccube.repository.order'] = function() use ($app) { |
|
| 87 | 87 | return $app['Eccube\Repository\OrderRepository']; |
| 88 | 88 | }; |
| 89 | - $app['eccube.repository.product'] = function () use ($app) { |
|
| 89 | + $app['eccube.repository.product'] = function() use ($app) { |
|
| 90 | 90 | return $app['Eccube\Repository\ProductRepository']; |
| 91 | 91 | }; |
| 92 | - $app['eccube.repository.product_image'] = function () use ($app) { |
|
| 92 | + $app['eccube.repository.product_image'] = function() use ($app) { |
|
| 93 | 93 | return $app['Eccube\Repository\ProductImageRepository']; |
| 94 | 94 | }; |
| 95 | - $app['eccube.repository.product_class'] = function () use ($app) { |
|
| 95 | + $app['eccube.repository.product_class'] = function() use ($app) { |
|
| 96 | 96 | return $app['Eccube\Repository\ProductClassRepository']; |
| 97 | 97 | }; |
| 98 | - $app['eccube.repository.product_stock'] = function () use ($app) { |
|
| 98 | + $app['eccube.repository.product_stock'] = function() use ($app) { |
|
| 99 | 99 | return $app['Eccube\Repository\ProductStockRepository']; |
| 100 | 100 | }; |
| 101 | - $app['eccube.repository.product_tag'] = function () use ($app) { |
|
| 101 | + $app['eccube.repository.product_tag'] = function() use ($app) { |
|
| 102 | 102 | return $app['Eccube\Repository\ProductTagRepository']; |
| 103 | 103 | }; |
| 104 | - $app['eccube.repository.class_name'] = function () use ($app) { |
|
| 104 | + $app['eccube.repository.class_name'] = function() use ($app) { |
|
| 105 | 105 | return $app['Eccube\Repository\ClassNameRepository']; |
| 106 | 106 | }; |
| 107 | - $app['eccube.repository.class_category'] = function () use ($app) { |
|
| 107 | + $app['eccube.repository.class_category'] = function() use ($app) { |
|
| 108 | 108 | return $app['Eccube\Repository\ClassCategoryRepository']; |
| 109 | 109 | }; |
| 110 | - $app['eccube.repository.customer_favorite_product'] = function () use ($app) { |
|
| 110 | + $app['eccube.repository.customer_favorite_product'] = function() use ($app) { |
|
| 111 | 111 | return $app['Eccube\Repository\CustomerFavoriteProductRepository']; |
| 112 | 112 | }; |
| 113 | - $app['eccube.repository.tax_rule'] = function () use ($app) { |
|
| 113 | + $app['eccube.repository.tax_rule'] = function() use ($app) { |
|
| 114 | 114 | return $app['Eccube\Repository\TaxRuleRepository']; |
| 115 | 115 | }; |
| 116 | - $app['eccube.repository.page'] = function () use ($app) { |
|
| 116 | + $app['eccube.repository.page'] = function() use ($app) { |
|
| 117 | 117 | return $app['Eccube\Repository\PageRepository']; |
| 118 | 118 | }; |
| 119 | - $app['eccube.repository.block'] = function () use ($app) { |
|
| 119 | + $app['eccube.repository.block'] = function() use ($app) { |
|
| 120 | 120 | return $app['Eccube\Repository\BlockRepository']; |
| 121 | 121 | }; |
| 122 | - $app['eccube.repository.order'] = function () use ($app) { |
|
| 122 | + $app['eccube.repository.order'] = function() use ($app) { |
|
| 123 | 123 | return $app['Eccube\Repository\OrderRepository']; |
| 124 | 124 | }; |
| 125 | - $app['eccube.repository.customer_address'] = function () use ($app) { |
|
| 125 | + $app['eccube.repository.customer_address'] = function() use ($app) { |
|
| 126 | 126 | return $app['Eccube\Repository\CustomerAddressRepository']; |
| 127 | 127 | }; |
| 128 | - $app['eccube.repository.shipping'] = function () use ($app) { |
|
| 128 | + $app['eccube.repository.shipping'] = function() use ($app) { |
|
| 129 | 129 | return $app['Eccube\Repository\ShippingRepository']; |
| 130 | 130 | }; |
| 131 | - $app['eccube.repository.order_item'] = function () use ($app) { |
|
| 131 | + $app['eccube.repository.order_item'] = function() use ($app) { |
|
| 132 | 132 | return $app['Eccube\Repository\OrderItemRepository']; |
| 133 | 133 | }; |
| 134 | - $app['eccube.repository.master.customer_status'] = function () use ($app) { |
|
| 134 | + $app['eccube.repository.master.customer_status'] = function() use ($app) { |
|
| 135 | 135 | return $app['Eccube\Repository\Master\CustomerStatusRepository']; |
| 136 | 136 | }; |
| 137 | 137 | |
| 138 | - $app['eccube.repository.mail_template'] = function () use ($app) { |
|
| 138 | + $app['eccube.repository.mail_template'] = function() use ($app) { |
|
| 139 | 139 | return $app['Eccube\Repository\MailTemplateRepository']; |
| 140 | 140 | }; |
| 141 | - $app['eccube.repository.csv'] = function () use ($app) { |
|
| 141 | + $app['eccube.repository.csv'] = function() use ($app) { |
|
| 142 | 142 | return $app['Eccube\Repository\CsvRepository']; |
| 143 | 143 | }; |
| 144 | - $app['eccube.repository.template'] = function () use ($app) { |
|
| 144 | + $app['eccube.repository.template'] = function() use ($app) { |
|
| 145 | 145 | return $app['Eccube\Repository\TemplateRepository']; |
| 146 | 146 | }; |
| 147 | - $app['eccube.repository.authority_role'] = function () use ($app) { |
|
| 147 | + $app['eccube.repository.authority_role'] = function() use ($app) { |
|
| 148 | 148 | return $app['Eccube\Repository\AuthorityRoleRepository']; |
| 149 | 149 | }; |
| 150 | - $app['eccube.repository.category'] = function () use ($app) { |
|
| 150 | + $app['eccube.repository.category'] = function() use ($app) { |
|
| 151 | 151 | return $app['Eccube\Repository\CategoryRepository']; |
| 152 | 152 | }; |
| 153 | - $app['eccube.repository.help'] = function () use ($app) { |
|
| 153 | + $app['eccube.repository.help'] = function() use ($app) { |
|
| 154 | 154 | return $app['Eccube\Repository\HelpRepository']; |
| 155 | 155 | }; |
| 156 | - $app['eccube.repository.plugin'] = function () use ($app) { |
|
| 156 | + $app['eccube.repository.plugin'] = function() use ($app) { |
|
| 157 | 157 | return $app['Eccube\Repository\PluginRepository']; |
| 158 | 158 | }; |
| 159 | - $app['eccube.repository.plugin_event_handler'] = function () use ($app) { |
|
| 159 | + $app['eccube.repository.plugin_event_handler'] = function() use ($app) { |
|
| 160 | 160 | return $app['Eccube\Repository\PluginEventHandlerRepository']; |
| 161 | 161 | }; |
| 162 | - $app['eccube.repository.layout'] = function () use ($app) { |
|
| 162 | + $app['eccube.repository.layout'] = function() use ($app) { |
|
| 163 | 163 | return $app['Eccube\Repository\LayoutRepository']; |
| 164 | 164 | }; |
| 165 | 165 | |
| 166 | 166 | // alias |
| 167 | - $app['eccube.repository.order_status'] = function () use ($app) { |
|
| 167 | + $app['eccube.repository.order_status'] = function() use ($app) { |
|
| 168 | 168 | return $app['Eccube\Repository\Master\OrderStatusRepository']; |
| 169 | 169 | }; |
| 170 | - $app['eccube.repository.customer_status'] = function () use ($app) { |
|
| 170 | + $app['eccube.repository.customer_status'] = function() use ($app) { |
|
| 171 | 171 | return $app['Eccube\Repository\Master\CustomerStatusRepository']; |
| 172 | 172 | }; |
| 173 | 173 | } |