@@ -44,7 +44,6 @@ |
||
44 | 44 | /** |
45 | 45 | * DeliveryFeeProcessor constructor. |
46 | 46 | * |
47 | - * @param Application $app |
|
48 | 47 | */ |
49 | 48 | public function __construct(BaseInfoRepository $baseInfoRepository) |
50 | 49 | { |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | /** |
221 | 221 | * 非会員情報を取得 |
222 | 222 | * |
223 | - * @param $sesisonKey |
|
223 | + * @param string $sesisonKey |
|
224 | 224 | * @return $Customer|null |
225 | 225 | */ |
226 | 226 | public function getNonMember($sesisonKey) |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | /** |
253 | 253 | * 受注情報を作成 |
254 | 254 | * |
255 | - * @param $Customer |
|
255 | + * @param null|Customer $Customer |
|
256 | 256 | * @return \Eccube\Entity\Order |
257 | 257 | */ |
258 | 258 | public function createOrder($Customer) |
@@ -281,7 +281,7 @@ discard block |
||
281 | 281 | * 仮受注情報作成 |
282 | 282 | * |
283 | 283 | * @param $Customer |
284 | - * @param $preOrderId |
|
284 | + * @param string $preOrderId |
|
285 | 285 | * @return mixed |
286 | 286 | * @throws \Doctrine\ORM\NoResultException |
287 | 287 | * @throws \Doctrine\ORM\NonUniqueResultException |
@@ -1403,7 +1403,7 @@ discard block |
||
1403 | 1403 | * 受注メール送信を行う |
1404 | 1404 | * |
1405 | 1405 | * @param Order $Order |
1406 | - * @return MailHistory |
|
1406 | + * @return null|\Symfony\Component\HttpFoundation\Request |
|
1407 | 1407 | */ |
1408 | 1408 | public function sendOrderMail(Order $Order) |
1409 | 1409 | { |
@@ -48,7 +48,6 @@ |
||
48 | 48 | /** |
49 | 49 | * SearchProductType constructor. |
50 | 50 | * |
51 | - * @param Application $app |
|
52 | 51 | */ |
53 | 52 | public function __construct() |
54 | 53 | { |
@@ -616,6 +616,9 @@ discard block |
||
616 | 616 | /** |
617 | 617 | * 登録、更新時のエラー画面表示 |
618 | 618 | * |
619 | + * @param Application $app |
|
620 | + * @param boolean $not_product_class |
|
621 | + * @param \Symfony\Component\Form\FormInterface $classForm |
|
619 | 622 | */ |
620 | 623 | protected function render($app, $Product, $ProductClass, $not_product_class, $classForm, $error = null) |
621 | 624 | { |
@@ -667,6 +670,7 @@ discard block |
||
667 | 670 | |
668 | 671 | /** |
669 | 672 | * 規格1と規格2を組み合わせた商品規格を作成 |
673 | + * @param Application $app |
|
670 | 674 | */ |
671 | 675 | private function createProductClasses($app, Product $Product, ClassName $ClassName1 = null, ClassName $ClassName2 = null) |
672 | 676 | { |
@@ -754,6 +758,7 @@ discard block |
||
754 | 758 | * |
755 | 759 | * @param $productClassDest コピー先となる商品規格 |
756 | 760 | * @param $productClassOrig コピー元となる商品規格 |
761 | + * @param Application $app |
|
757 | 762 | */ |
758 | 763 | private function setDefaultProductClass($app, $productClassDest, $productClassOrig) { |
759 | 764 | $productClassDest->setDeliveryDate($productClassOrig->getDeliveryDate()); |