@@ -16,7 +16,6 @@ |
||
16 | 16 | * This method should only be used to configure services and parameters. |
17 | 17 | * It should not get services. |
18 | 18 | * |
19 | - * @param Container $pimple A container instance |
|
20 | 19 | */ |
21 | 20 | public function register(Container $app) |
22 | 21 | { |
@@ -32,9 +32,9 @@ |
||
32 | 32 | |
33 | 33 | /** |
34 | 34 | * RepositoryDefinition constructor. |
35 | - * @param $id |
|
36 | - * @param $refClass |
|
37 | - * @param $entityClass |
|
35 | + * @param string $id |
|
36 | + * @param \ReflectionClass $refClass |
|
37 | + * @param string $entityClass |
|
38 | 38 | */ |
39 | 39 | public function __construct($id, $refClass, $entityClass) |
40 | 40 | { |
@@ -127,7 +127,7 @@ |
||
127 | 127 | |
128 | 128 | /** |
129 | 129 | * @param $rowArray |
130 | - * @param $key |
|
130 | + * @param string $key |
|
131 | 131 | * @return array |
132 | 132 | */ |
133 | 133 | private static function parseArrayInfoOutput($rowArray, $key) |
@@ -91,7 +91,7 @@ |
||
91 | 91 | * @param integer $pointRate ポイント付与率(%) |
92 | 92 | * @param integer $price 単価 |
93 | 93 | * @param integer $quantity 数量 |
94 | - * @return integer additional point |
|
94 | + * @return double additional point |
|
95 | 95 | */ |
96 | 96 | protected function priceToAddPoint($pointRate, $price, $quantity) |
97 | 97 | { |
@@ -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) |
@@ -600,6 +600,9 @@ discard block |
||
600 | 600 | /** |
601 | 601 | * 登録、更新時のエラー画面表示 |
602 | 602 | * |
603 | + * @param Application $app |
|
604 | + * @param boolean $not_product_class |
|
605 | + * @param \Symfony\Component\Form\FormInterface $classForm |
|
603 | 606 | */ |
604 | 607 | protected function render($app, $Product, $ProductClass, $not_product_class, $classForm, $error = null) |
605 | 608 | { |
@@ -651,6 +654,7 @@ discard block |
||
651 | 654 | |
652 | 655 | /** |
653 | 656 | * 規格1と規格2を組み合わせた商品規格を作成 |
657 | + * @param Application $app |
|
654 | 658 | */ |
655 | 659 | private function createProductClasses($app, Product $Product, ClassName $ClassName1 = null, ClassName $ClassName2 = null) |
656 | 660 | { |
@@ -738,6 +742,7 @@ discard block |
||
738 | 742 | * |
739 | 743 | * @param $productClassDest ProductClass コピー先となる商品規格 |
740 | 744 | * @param $productClassOrig ProductClass コピー元となる商品規格 |
745 | + * @param Application $app |
|
741 | 746 | */ |
742 | 747 | private function setDefaultProductClass($app, $productClassDest, $productClassOrig) { |
743 | 748 | $productClassDest->setDeliveryDuration($productClassOrig->getDeliveryDuration()); |
@@ -661,6 +661,8 @@ discard block |
||
661 | 661 | /** |
662 | 662 | * 登録、更新時のエラー画面表示 |
663 | 663 | * |
664 | + * @param Application $app |
|
665 | + * @param \Symfony\Component\Form\FormInterface $form |
|
664 | 666 | */ |
665 | 667 | protected function render($app, $form, $headers) |
666 | 668 | { |
@@ -692,6 +694,7 @@ discard block |
||
692 | 694 | * アップロードされたCSVファイルの行ごとの処理 |
693 | 695 | * |
694 | 696 | * @param $formFile |
697 | + * @param Application $app |
|
695 | 698 | * @return CsvImportService |
696 | 699 | */ |
697 | 700 | protected function getImportData($app, $formFile) |
@@ -769,6 +772,8 @@ discard block |
||
769 | 772 | |
770 | 773 | /** |
771 | 774 | * 商品カテゴリの削除、登録 |
775 | + * @param Application $app |
|
776 | + * @param CsvImportService $data |
|
772 | 777 | */ |
773 | 778 | protected function createProductCategory($row, Product $Product, $app, $data) |
774 | 779 | { |
@@ -868,6 +873,8 @@ discard block |
||
868 | 873 | |
869 | 874 | /** |
870 | 875 | * 商品規格分類1、商品規格分類2がnullとなる商品規格情報を作成 |
876 | + * @param Application $app |
|
877 | + * @param CsvImportService $data |
|
871 | 878 | */ |
872 | 879 | protected function createProductClass($row, Product $Product, $app, $data, $ClassCategory1 = null, $ClassCategory2 = null) |
873 | 880 | { |
@@ -1000,6 +1007,8 @@ discard block |
||
1000 | 1007 | |
1001 | 1008 | /** |
1002 | 1009 | * 商品規格情報を更新 |
1010 | + * @param Application $app |
|
1011 | + * @param CsvImportService $data |
|
1003 | 1012 | */ |
1004 | 1013 | protected function updateProductClass($row, Product $Product, ProductClass $ProductClass, $app, $data) |
1005 | 1014 | { |
@@ -1136,6 +1145,7 @@ discard block |
||
1136 | 1145 | /** |
1137 | 1146 | * 登録、更新時のエラー画面表示 |
1138 | 1147 | * |
1148 | + * @param string $message |
|
1139 | 1149 | */ |
1140 | 1150 | protected function addErrors($message) |
1141 | 1151 | { |
@@ -1209,6 +1219,7 @@ discard block |
||
1209 | 1219 | * ProductCategory作成 |
1210 | 1220 | * @param \Eccube\Entity\Product $Product |
1211 | 1221 | * @param \Eccube\Entity\Category $Category |
1222 | + * @param integer $sortNo |
|
1212 | 1223 | * @return ProductCategory |
1213 | 1224 | */ |
1214 | 1225 | private function makeProductCategory($Product, $Category, $sortNo) |
@@ -234,7 +234,7 @@ |
||
234 | 234 | |
235 | 235 | /** |
236 | 236 | * Get mode |
237 | - * @return mixed|string |
|
237 | + * @return string |
|
238 | 238 | */ |
239 | 239 | public function getMode() |
240 | 240 | { |
@@ -234,7 +234,7 @@ |
||
234 | 234 | |
235 | 235 | /** |
236 | 236 | * Get mode |
237 | - * @return mixed|string |
|
237 | + * @return string |
|
238 | 238 | */ |
239 | 239 | public function getMode() |
240 | 240 | { |