@@ -379,7 +379,7 @@ |
||
| 379 | 379 | } |
| 380 | 380 | |
| 381 | 381 | /** |
| 382 | - * @return boolean |
|
| 382 | + * @return integer |
|
| 383 | 383 | */ |
| 384 | 384 | public function isVisible() |
| 385 | 385 | { |
@@ -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); |
@@ -56,7 +56,7 @@ |
||
| 56 | 56 | * @param ProductClassRepository $productClassRepository |
| 57 | 57 | * @param CartService $cartService |
| 58 | 58 | * @param PurchaseFlow $cartPurchaseFlow |
| 59 | - * @param BaseInfo $BaseInfo |
|
| 59 | + * @param BaseInfo $baseInfo |
|
| 60 | 60 | */ |
| 61 | 61 | public function __construct( |
| 62 | 62 | ProductClassRepository $productClassRepository, |
@@ -381,7 +381,7 @@ discard block |
||
| 381 | 381 | /** |
| 382 | 382 | * @param Request $request |
| 383 | 383 | * @param $csvTypeId |
| 384 | - * @param $fileName |
|
| 384 | + * @param string $fileName |
|
| 385 | 385 | * |
| 386 | 386 | * @return StreamedResponse |
| 387 | 387 | */ |
@@ -465,9 +465,9 @@ discard block |
||
| 465 | 465 | * @Route("/%eccube_admin_route%/shipping/{id}/order_status", requirements={"id" = "\d+"}, name="admin_shipping_update_order_status") |
| 466 | 466 | * |
| 467 | 467 | * @param Request $request |
| 468 | - * @param Shipping $shipping |
|
| 468 | + * @param Shipping $Shipping |
|
| 469 | 469 | * |
| 470 | - * @return RedirectResponse |
|
| 470 | + * @return \Symfony\Component\HttpFoundation\JsonResponse |
|
| 471 | 471 | */ |
| 472 | 472 | public function updateOrderStatus(Request $request, Shipping $Shipping) |
| 473 | 473 | { |
@@ -156,6 +156,9 @@ |
||
| 156 | 156 | return empty($tables) ? false : true; |
| 157 | 157 | } |
| 158 | 158 | |
| 159 | + /** |
|
| 160 | + * @param string $pluginDir |
|
| 161 | + */ |
|
| 159 | 162 | protected function getPluginDirectories($pluginDir) |
| 160 | 163 | { |
| 161 | 164 | $finder = (new Finder()) |
@@ -1336,7 +1336,7 @@ |
||
| 1336 | 1336 | * |
| 1337 | 1337 | * @param \Eccube\Entity\Shipping $Shipping |
| 1338 | 1338 | * |
| 1339 | - * @return Shipping |
|
| 1339 | + * @return Order |
|
| 1340 | 1340 | */ |
| 1341 | 1341 | public function addShipping(\Eccube\Entity\Shipping $Shipping) |
| 1342 | 1342 | { |
@@ -83,7 +83,6 @@ |
||
| 83 | 83 | * @param EccubeConfig $eccubeConfig |
| 84 | 84 | * @param ProductClassRepository $productClassRepository |
| 85 | 85 | * @param OrderItemRepository $orderItemRepository |
| 86 | - * @param RequestStack $requestStack |
|
| 87 | 86 | */ |
| 88 | 87 | public function __construct( |
| 89 | 88 | EntityManagerInterface $entityManager, |
@@ -537,7 +537,7 @@ |
||
| 537 | 537 | /** |
| 538 | 538 | * ステータスごとの受注件数を取得する. |
| 539 | 539 | * |
| 540 | - * @param $OrderStatusOrId |
|
| 540 | + * @param integer $OrderStatusOrId |
|
| 541 | 541 | * |
| 542 | 542 | * @return int |
| 543 | 543 | * |
@@ -216,7 +216,7 @@ discard block |
||
| 216 | 216 | * 明細追加処理. |
| 217 | 217 | * |
| 218 | 218 | * @param ItemHolderInterface $itemHolder |
| 219 | - * @param $discount |
|
| 219 | + * @param integer $discount |
|
| 220 | 220 | */ |
| 221 | 221 | private function addPointDiscountItem(ItemHolderInterface $itemHolder, $discount) |
| 222 | 222 | { |
@@ -255,7 +255,7 @@ discard block |
||
| 255 | 255 | /** |
| 256 | 256 | * ポイントを金額に変換する. |
| 257 | 257 | * |
| 258 | - * @param $point int ポイント |
|
| 258 | + * @param integer $point int ポイント |
|
| 259 | 259 | * |
| 260 | 260 | * @return int 金額 |
| 261 | 261 | */ |