@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | /** |
44 | 44 | * Returns a list of functions to add to the existing list. |
45 | 45 | * |
46 | - * @return array An array of functions |
|
46 | + * @return TwigFunction[] An array of functions |
|
47 | 47 | */ |
48 | 48 | public function getFunctions() |
49 | 49 | { |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | /** |
68 | 68 | * Returns a list of filters. |
69 | 69 | * |
70 | - * @return array |
|
70 | + * @return TwigFilter[] |
|
71 | 71 | */ |
72 | 72 | public function getFilters() |
73 | 73 | { |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | /** |
94 | 94 | * Name of this extension |
95 | 95 | * |
96 | - * @return string |
|
96 | + * @return double |
|
97 | 97 | */ |
98 | 98 | public function getCalcIncTax($price, $tax_rate, $tax_rule) |
99 | 99 | { |
@@ -41,6 +41,9 @@ |
||
41 | 41 | $this->kernel = $kernel; |
42 | 42 | } |
43 | 43 | |
44 | + /** |
|
45 | + * @param string $env |
|
46 | + */ |
|
44 | 47 | public function clearCache($env = null) |
45 | 48 | { |
46 | 49 | $console = new Application($this->kernel); |
@@ -121,7 +121,7 @@ |
||
121 | 121 | /** |
122 | 122 | * 文字コードの判定 |
123 | 123 | * |
124 | - * @param $value |
|
124 | + * @param string $value |
|
125 | 125 | * |
126 | 126 | * @return string |
127 | 127 | */ |
@@ -1,6 +1,5 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -use Codeception\Util\Fixtures; |
|
4 | 3 | use Page\Admin\OwnersPluginPage; |
5 | 4 | |
6 | 5 | /** |
@@ -438,6 +438,9 @@ |
||
438 | 438 | return $user; |
439 | 439 | } |
440 | 440 | |
441 | + /** |
|
442 | + * @param string $allocatedId |
|
443 | + */ |
|
441 | 444 | protected function createCartKey($allocatedId, Customer $Customer = null) |
442 | 445 | { |
443 | 446 | if ($Customer instanceof Customer) { |
@@ -229,7 +229,7 @@ |
||
229 | 229 | /** |
230 | 230 | * Get mode |
231 | 231 | * |
232 | - * @return mixed|string |
|
232 | + * @return string |
|
233 | 233 | */ |
234 | 234 | public function getMode() |
235 | 235 | { |
@@ -147,6 +147,9 @@ discard block |
||
147 | 147 | return $version; |
148 | 148 | } |
149 | 149 | |
150 | + /** |
|
151 | + * @param string $pluginDir |
|
152 | + */ |
|
150 | 153 | protected function createDirectories($pluginDir) |
151 | 154 | { |
152 | 155 | $dirs = [ |
@@ -165,6 +168,9 @@ discard block |
||
165 | 168 | } |
166 | 169 | } |
167 | 170 | |
171 | + /** |
|
172 | + * @param string $pluginDir |
|
173 | + */ |
|
168 | 174 | protected function createConfig($pluginDir, $name, $code, $version) |
169 | 175 | { |
170 | 176 | $source = <<<EOL |
@@ -176,12 +182,18 @@ discard block |
||
176 | 182 | $this->fs->dumpFile($pluginDir.'/config.yml', $source); |
177 | 183 | } |
178 | 184 | |
185 | + /** |
|
186 | + * @param string $pluginDir |
|
187 | + */ |
|
179 | 188 | protected function createMessages($pluginDir) |
180 | 189 | { |
181 | 190 | $this->fs->dumpFile($pluginDir.'/Resource/locale/messages.ja.yaml', ''); |
182 | 191 | $this->fs->dumpFile($pluginDir.'/Resource/locale/validators.ja.yaml', ''); |
183 | 192 | } |
184 | 193 | |
194 | + /** |
|
195 | + * @param string $pluginDir |
|
196 | + */ |
|
185 | 197 | protected function createTwigBlock($pluginDir, $code) |
186 | 198 | { |
187 | 199 | $source = <<<EOL |
@@ -206,6 +218,9 @@ discard block |
||
206 | 218 | $this->fs->dumpFile($pluginDir.'/TwigBlock.php', $source); |
207 | 219 | } |
208 | 220 | |
221 | + /** |
|
222 | + * @param string $pluginDir |
|
223 | + */ |
|
209 | 224 | protected function createNav($pluginDir, $code) |
210 | 225 | { |
211 | 226 | $source = <<<EOL |
@@ -230,6 +245,9 @@ discard block |
||
230 | 245 | $this->fs->dumpFile($pluginDir.'/Nav.php', $source); |
231 | 246 | } |
232 | 247 | |
248 | + /** |
|
249 | + * @param string $pluginDir |
|
250 | + */ |
|
233 | 251 | protected function createEvent($pluginDir, $code) |
234 | 252 | { |
235 | 253 | $source = <<<EOL |
@@ -254,6 +272,9 @@ discard block |
||
254 | 272 | $this->fs->dumpFile($pluginDir.'/Event.php', $source); |
255 | 273 | } |
256 | 274 | |
275 | + /** |
|
276 | + * @param string $pluginDir |
|
277 | + */ |
|
257 | 278 | protected function createConfigController($pluginDir, $code) |
258 | 279 | { |
259 | 280 | $snakecased = Container::underscore($code); |
@@ -96,6 +96,9 @@ discard block |
||
96 | 96 | $this->configureTranslations($container, $enabled, $pluginDir); |
97 | 97 | } |
98 | 98 | |
99 | + /** |
|
100 | + * @param string $pluginDir |
|
101 | + */ |
|
99 | 102 | protected function configureTwigPaths(ContainerBuilder $container, $enabled, $pluginDir) |
100 | 103 | { |
101 | 104 | $paths = []; |
@@ -114,6 +117,9 @@ discard block |
||
114 | 117 | } |
115 | 118 | } |
116 | 119 | |
120 | + /** |
|
121 | + * @param string $pluginDir |
|
122 | + */ |
|
117 | 123 | protected function configureTranslations(ContainerBuilder $container, $enabled, $pluginDir) |
118 | 124 | { |
119 | 125 | $paths = []; |
@@ -155,6 +161,9 @@ discard block |
||
155 | 161 | return empty($tables) ? false : true; |
156 | 162 | } |
157 | 163 | |
164 | + /** |
|
165 | + * @param string $pluginDir |
|
166 | + */ |
|
158 | 167 | protected function getPluginDirectories($pluginDir) |
159 | 168 | { |
160 | 169 | $finder = (new Finder()) |
@@ -179,7 +179,7 @@ |
||
179 | 179 | * 明細追加処理. |
180 | 180 | * |
181 | 181 | * @param ItemHolderInterface $itemHolder |
182 | - * @param $discount |
|
182 | + * @param integer $discount |
|
183 | 183 | */ |
184 | 184 | private function addPointDiscountItem(ItemHolderInterface $itemHolder, $discount) |
185 | 185 | { |