@@ -231,7 +231,7 @@ discard block |
||
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 |
@@ -645,7 +645,7 @@ discard block |
||
645 | 645 | * 在庫数と販売制限数ともに個数が超えていれば、少ない方を適用させてメッセージを表示する |
646 | 646 | * |
647 | 647 | * @param ProductClass $ProductClass |
648 | - * @param $productName |
|
648 | + * @param string $productName |
|
649 | 649 | * @param $quantity |
650 | 650 | * @return int チェック後に更新した個数 |
651 | 651 | */ |
@@ -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 $container) |
22 | 21 | { |
@@ -32,6 +32,9 @@ |
||
32 | 32 | { |
33 | 33 | protected $trait_proxies_directory; |
34 | 34 | |
35 | + /** |
|
36 | + * @param string $dir |
|
37 | + */ |
|
35 | 38 | public function setTraitProxiesDirectory($dir) |
36 | 39 | { |
37 | 40 | $this->trait_proxies_directory = $dir; |
@@ -56,7 +56,7 @@ |
||
56 | 56 | |
57 | 57 | /** |
58 | 58 | * JoinClause constructor. |
59 | - * @param $leftJoin |
|
59 | + * @param boolean $leftJoin |
|
60 | 60 | * @param $join |
61 | 61 | * @param $alias |
62 | 62 | * @param $conditionType |
@@ -37,7 +37,7 @@ |
||
37 | 37 | |
38 | 38 | /** |
39 | 39 | * OrderByClause constructor. |
40 | - * @param $sort |
|
40 | + * @param string $sort |
|
41 | 41 | * @param string $order |
42 | 42 | */ |
43 | 43 | function __construct($sort, $order = 'asc') |
@@ -53,6 +53,9 @@ |
||
53 | 53 | $this->params = $params; |
54 | 54 | } |
55 | 55 | |
56 | + /** |
|
57 | + * @param Expr\Comparison $expr |
|
58 | + */ |
|
56 | 59 | private static function newWhereClause($expr, $x, $y) |
57 | 60 | { |
58 | 61 | if ($y) { |
@@ -40,7 +40,7 @@ |
||
40 | 40 | * @deprecated 呼び出し元で制御する |
41 | 41 | * @param $block_id |
42 | 42 | * @param $DeviceType |
43 | - * @return array|\Eccube\Entity\Block |
|
43 | + * @return Block|null |
|
44 | 44 | */ |
45 | 45 | public function findOrCreate($block_id, $DeviceType) |
46 | 46 | { |
@@ -650,7 +650,7 @@ |
||
650 | 650 | * - 受注ステータスが発送済に設定された場合に発送日を更新 |
651 | 651 | * - 受注ステータスが入金済に設定された場合に入金日を更新 |
652 | 652 | * |
653 | - * @param $app |
|
653 | + * @param Application $app |
|
654 | 654 | * @param $TargetOrder |
655 | 655 | * @param $OriginOrder |
656 | 656 | * |
@@ -53,6 +53,9 @@ |
||
53 | 53 | |
54 | 54 | protected $app; |
55 | 55 | |
56 | + /** |
|
57 | + * @param \Pimple\Container $app |
|
58 | + */ |
|
56 | 59 | public function __construct($app) |
57 | 60 | { |
58 | 61 | $this->app = $app; |