@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | * @param Application $app |
| 61 | 61 | * @param Request $request |
| 62 | 62 | * |
| 63 | - * @return string |
|
| 63 | + * @return \Symfony\Component\HttpFoundation\Response |
|
| 64 | 64 | */ |
| 65 | 65 | public function index(Application $app, Request $request) |
| 66 | 66 | { |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | * @param Application $app |
| 88 | 88 | * @param Request $request |
| 89 | 89 | * |
| 90 | - * @return string |
|
| 90 | + * @return \Symfony\Component\HttpFoundation\Response |
|
| 91 | 91 | */ |
| 92 | 92 | public function history(Application $app, Request $request, $id) |
| 93 | 93 | { |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | * @param Application $app |
| 116 | 116 | * @param Request $request |
| 117 | 117 | * |
| 118 | - * @return string |
|
| 118 | + * @return \Symfony\Component\HttpFoundation\RedirectResponse |
|
| 119 | 119 | */ |
| 120 | 120 | public function order(Application $app, Request $request) |
| 121 | 121 | { |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | * @param Application $app |
| 148 | 148 | * @param Request $request |
| 149 | 149 | * |
| 150 | - * @return string |
|
| 150 | + * @return \Symfony\Component\HttpFoundation\Response |
|
| 151 | 151 | */ |
| 152 | 152 | public function favorite(Application $app, Request $request) |
| 153 | 153 | { |
@@ -87,7 +87,7 @@ |
||
| 87 | 87 | * Complete |
| 88 | 88 | * |
| 89 | 89 | * @param Application $app |
| 90 | - * @return mixed |
|
| 90 | + * @return \Symfony\Component\HttpFoundation\Response |
|
| 91 | 91 | */ |
| 92 | 92 | public function complete(Application $app, Request $request) |
| 93 | 93 | { |
@@ -1129,6 +1129,7 @@ |
||
| 1129 | 1129 | |
| 1130 | 1130 | /** |
| 1131 | 1131 | * 非会員でのお客様情報変更時の入力チェック |
| 1132 | + * @param Application $app |
|
| 1132 | 1133 | */ |
| 1133 | 1134 | private function customerValidation($app, $data) { |
| 1134 | 1135 | |
@@ -42,7 +42,7 @@ |
||
| 42 | 42 | |
| 43 | 43 | /** |
| 44 | 44 | * @param ObjectManager $om |
| 45 | - * @param stging $className |
|
| 45 | + * @param string $className |
|
| 46 | 46 | */ |
| 47 | 47 | public function __construct(ObjectManager $om, $className) |
| 48 | 48 | { |
@@ -38,6 +38,9 @@ |
||
| 38 | 38 | |
| 39 | 39 | protected $app; |
| 40 | 40 | |
| 41 | + /** |
|
| 42 | + * @param \Silex\Application $app |
|
| 43 | + */ |
|
| 41 | 44 | public function __construct($app) |
| 42 | 45 | { |
| 43 | 46 | $this->app = $app; |
@@ -36,6 +36,9 @@ |
||
| 36 | 36 | { |
| 37 | 37 | protected $app; |
| 38 | 38 | |
| 39 | + /** |
|
| 40 | + * @param \Silex\Application $app |
|
| 41 | + */ |
|
| 39 | 42 | public function __construct($app) |
| 40 | 43 | { |
| 41 | 44 | $this->app = $app; |
@@ -130,7 +130,7 @@ |
||
| 130 | 130 | /** |
| 131 | 131 | * @param \Eccube\Entity\Member $Member |
| 132 | 132 | * |
| 133 | - * @return void |
|
| 133 | + * @return boolean |
|
| 134 | 134 | */ |
| 135 | 135 | public function up(\Eccube\Entity\Member $Member) |
| 136 | 136 | { |
@@ -65,7 +65,7 @@ |
||
| 65 | 65 | * @param int|null|\Eccube\Entity\ProductClass $ProductClass 商品規格 |
| 66 | 66 | * @param int|null|\Eccube\Entity\Master\Pref $Pref 都道府県 |
| 67 | 67 | * @param int|null|\Eccube\Entity\Master\Country $Country 国 |
| 68 | - * @return \Eccube\Entity\TaxRule 税設定情報 |
|
| 68 | + * @return integer 税設定情報 |
|
| 69 | 69 | * |
| 70 | 70 | * @throws NoResultException |
| 71 | 71 | */ |
@@ -201,7 +201,7 @@ |
||
| 201 | 201 | } |
| 202 | 202 | |
| 203 | 203 | /** |
| 204 | - * @param \Eccube\Entity\ProductClass|integer $ProductClass |
|
| 204 | + * @param string $ProductClass |
|
| 205 | 205 | * @param integer $quantity |
| 206 | 206 | * @return \Eccube\Service\CartService |
| 207 | 207 | * @throws CartException |