@@ -131,7 +131,7 @@ |
||
131 | 131 | |
132 | 132 | /** |
133 | 133 | * @param $rowArray |
134 | - * @param $key |
|
134 | + * @param string $key |
|
135 | 135 | * |
136 | 136 | * @return array |
137 | 137 | */ |
@@ -204,7 +204,7 @@ |
||
204 | 204 | /** |
205 | 205 | * EntityからTraitを削除. |
206 | 206 | * |
207 | - * @param $entityTokens Tokens Entityのトークン |
|
207 | + * @param Tokens $entityTokens Tokens Entityのトークン |
|
208 | 208 | * @param $trait string 削除するTraitのFQCN |
209 | 209 | */ |
210 | 210 | private function removeTrait($entityTokens, $trait) |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | * @param int|null|\Eccube\Entity\Master\Pref $pref 都道府県 |
70 | 70 | * @param int|null|\Eccube\Entity\Master\Country $country 国 |
71 | 71 | * |
72 | - * @return int |
|
72 | + * @return double |
|
73 | 73 | */ |
74 | 74 | public function getPriceIncTax($price, $product = null, $productClass = null, $pref = null, $country = null) |
75 | 75 | { |
@@ -97,8 +97,8 @@ discard block |
||
97 | 97 | /** |
98 | 98 | * 課税規則に応じて端数処理を行う |
99 | 99 | * |
100 | - * @param float|integer $value 端数処理を行う数値 |
|
101 | - * @param integer $calcRule 課税規則 |
|
100 | + * @param integer $value 端数処理を行う数値 |
|
101 | + * @param integer $RoundingType |
|
102 | 102 | * |
103 | 103 | * @return double 端数処理後の数値 |
104 | 104 | */ |
@@ -13,7 +13,6 @@ |
||
13 | 13 | * This method should only be used to configure services and parameters. |
14 | 14 | * It should not get services. |
15 | 15 | * |
16 | - * @param Container $pimple A container instance |
|
17 | 16 | */ |
18 | 17 | public function register(Container $app) |
19 | 18 | { |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | /** |
54 | 54 | * Returns a list of functions to add to the existing list. |
55 | 55 | * |
56 | - * @return array An array of functions |
|
56 | + * @return TwigFunction[] An array of functions |
|
57 | 57 | */ |
58 | 58 | public function getFunctions() |
59 | 59 | { |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | /** |
78 | 78 | * Returns a list of filters. |
79 | 79 | * |
80 | - * @return array |
|
80 | + * @return TwigFilter[] |
|
81 | 81 | */ |
82 | 82 | public function getFilters() |
83 | 83 | { |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | /** |
104 | 104 | * Name of this extension |
105 | 105 | * |
106 | - * @return string |
|
106 | + * @return double |
|
107 | 107 | */ |
108 | 108 | public function getCalcIncTax($price, $tax_rate, $tax_rule) |
109 | 109 | { |
@@ -51,6 +51,9 @@ |
||
51 | 51 | $this->kernel = $kernel; |
52 | 52 | } |
53 | 53 | |
54 | + /** |
|
55 | + * @param string $env |
|
56 | + */ |
|
54 | 57 | public function clearCache($env = null) |
55 | 58 | { |
56 | 59 | $console = new Application($this->kernel); |
@@ -131,7 +131,7 @@ |
||
131 | 131 | /** |
132 | 132 | * 文字コードの判定 |
133 | 133 | * |
134 | - * @param $value |
|
134 | + * @param string $value |
|
135 | 135 | * |
136 | 136 | * @return string |
137 | 137 | */ |
@@ -22,8 +22,6 @@ |
||
22 | 22 | use Doctrine\ORM\Query\AST\PartialObjectExpression; |
23 | 23 | use Doctrine\ORM\Query\AST\SelectExpression; |
24 | 24 | use Doctrine\ORM\Query\AST\SelectStatement; |
25 | -use Doctrine\ORM\Query\Expr\OrderBy; |
|
26 | -use Doctrine\ORM\Query\Expr\Select; |
|
27 | 25 | use Doctrine\ORM\Query\SqlWalker; |
28 | 26 | |
29 | 27 | /** |
@@ -242,7 +242,7 @@ |
||
242 | 242 | /** |
243 | 243 | * Get mode |
244 | 244 | * |
245 | - * @return mixed|string |
|
245 | + * @return string |
|
246 | 246 | */ |
247 | 247 | public function getMode() |
248 | 248 | { |