@@ -959,7 +959,7 @@ |
||
959 | 959 | * 失敗 : \Doctrine\DBAL\DBALExceptionエラーが発生( 接続に失敗した場合 )、エラー画面を表示しdie() |
960 | 960 | * 備考 : app['debug']がtrueの際は処理を行わない |
961 | 961 | * |
962 | - * @return boolean true |
|
962 | + * @return null|boolean true |
|
963 | 963 | * |
964 | 964 | */ |
965 | 965 | protected function checkDatabaseConnection() |
@@ -52,11 +52,17 @@ |
||
52 | 52 | return $form; |
53 | 53 | } |
54 | 54 | |
55 | + /** |
|
56 | + * @param Application $app |
|
57 | + */ |
|
55 | 58 | protected function getSecurity($app) |
56 | 59 | { |
57 | 60 | return $app['security.token_storage']; |
58 | 61 | } |
59 | 62 | |
63 | + /** |
|
64 | + * @param Application $app |
|
65 | + */ |
|
60 | 66 | protected function isTokenValid($app) |
61 | 67 | { |
62 | 68 | $csrf = $app['form.csrf_provider']; |
@@ -230,6 +230,10 @@ discard block |
||
230 | 230 | return $str; |
231 | 231 | } |
232 | 232 | |
233 | + /** |
|
234 | + * @param string $topDir |
|
235 | + * @param Request $request |
|
236 | + */ |
|
233 | 237 | private function getTree($topDir, $request) |
234 | 238 | { |
235 | 239 | $finder = Finder::create()->in($topDir) |
@@ -267,6 +271,10 @@ discard block |
||
267 | 271 | return $tree; |
268 | 272 | } |
269 | 273 | |
274 | + /** |
|
275 | + * @param Application $app |
|
276 | + * @param string $nowDir |
|
277 | + */ |
|
270 | 278 | private function getFileList($app, $nowDir) |
271 | 279 | { |
272 | 280 | $topDir = $app['config']['user_data_realdir']; |
@@ -326,6 +334,9 @@ discard block |
||
326 | 334 | return (strpos($targetDir, $topDir) === 0); |
327 | 335 | } |
328 | 336 | |
337 | + /** |
|
338 | + * @return string |
|
339 | + */ |
|
329 | 340 | private function convertStrFromServer($target) |
330 | 341 | { |
331 | 342 | if ($this->encode == self::SJIS) { |
@@ -523,7 +523,7 @@ discard block |
||
523 | 523 | /** |
524 | 524 | * フォームからの入直内容に基づいて、受注情報の再計算を行う |
525 | 525 | * |
526 | - * @param $app |
|
526 | + * @param Application $app |
|
527 | 527 | * @param $Order |
528 | 528 | */ |
529 | 529 | protected function calculate($app, \Eccube\Entity\Order $Order) |
@@ -613,7 +613,7 @@ discard block |
||
613 | 613 | * - 受注ステータスが入金済に設定された場合に入金日を更新 |
614 | 614 | * |
615 | 615 | * |
616 | - * @param $app |
|
616 | + * @param Application $app |
|
617 | 617 | * @param $TargetOrder |
618 | 618 | * @param $OriginOrder |
619 | 619 | */ |
@@ -354,6 +354,9 @@ |
||
354 | 354 | } |
355 | 355 | |
356 | 356 | |
357 | + /** |
|
358 | + * @param Application $app |
|
359 | + */ |
|
357 | 360 | private function createBody($app, $header, $footer, $Order) |
358 | 361 | { |
359 | 362 | return $app->renderView('Mail/order.twig', array( |
@@ -336,6 +336,9 @@ |
||
336 | 336 | } |
337 | 337 | |
338 | 338 | |
339 | + /** |
|
340 | + * @param InstallApplication $app |
|
341 | + */ |
|
339 | 342 | private function checkModules($app) |
340 | 343 | { |
341 | 344 | foreach ($this->required_modules as $module) { |
@@ -131,7 +131,7 @@ |
||
131 | 131 | /** |
132 | 132 | * @param \Eccube\Entity\Member $Member |
133 | 133 | * |
134 | - * @return void |
|
134 | + * @return boolean |
|
135 | 135 | */ |
136 | 136 | public function up(\Eccube\Entity\Member $Member) |
137 | 137 | { |
@@ -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 | */ |
@@ -231,7 +231,7 @@ |
||
231 | 231 | } |
232 | 232 | |
233 | 233 | /** |
234 | - * @param \Eccube\Entity\ProductClass|integer $ProductClass |
|
234 | + * @param string $ProductClass |
|
235 | 235 | * @param integer $quantity |
236 | 236 | * @return \Eccube\Service\CartService |
237 | 237 | * @throws CartException |