@@ -128,7 +128,7 @@ |
||
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | /** |
| 131 | - * @param $Carts |
|
| 131 | + * @param \Eccube\Entity\Cart[] $Carts |
|
| 132 | 132 | * |
| 133 | 133 | * @return \Symfony\Component\HttpFoundation\RedirectResponse |
| 134 | 134 | */ |
@@ -19,6 +19,9 @@ |
||
| 19 | 19 | { |
| 20 | 20 | protected $trait_proxies_directory; |
| 21 | 21 | |
| 22 | + /** |
|
| 23 | + * @param string $dir |
|
| 24 | + */ |
|
| 22 | 25 | public function setTraitProxiesDirectory($dir) |
| 23 | 26 | { |
| 24 | 27 | $this->trait_proxies_directory = $dir; |
@@ -1750,7 +1750,7 @@ |
||
| 1750 | 1750 | /** |
| 1751 | 1751 | * Set orderStatus. |
| 1752 | 1752 | * |
| 1753 | - * @param \Eccube\Entity\Master\OrderStatus|null|object $orderStatus |
|
| 1753 | + * @param null|Master\OrderStatus $orderStatus |
|
| 1754 | 1754 | * |
| 1755 | 1755 | * @return Order |
| 1756 | 1756 | */ |
@@ -110,7 +110,7 @@ |
||
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | /** |
| 113 | - * @param $key |
|
| 113 | + * @param string $key |
|
| 114 | 114 | * @param $value |
| 115 | 115 | */ |
| 116 | 116 | public function setParameter($key, $value) |
@@ -89,7 +89,7 @@ |
||
| 89 | 89 | /** |
| 90 | 90 | * ルーティング名を取得する. |
| 91 | 91 | * |
| 92 | - * @param $request |
|
| 92 | + * @param \Symfony\Component\HttpFoundation\Request $request |
|
| 93 | 93 | * |
| 94 | 94 | * @return string |
| 95 | 95 | */ |
@@ -194,7 +194,7 @@ |
||
| 194 | 194 | /** |
| 195 | 195 | * 指定された複数ディレクトリのうち、いずれかのディレクトリ以下にファイルが存在するかを確認。 |
| 196 | 196 | * |
| 197 | - * @param $form FormInterface |
|
| 197 | + * @param FormInterface $form FormInterface |
|
| 198 | 198 | * @param $dirs array |
| 199 | 199 | */ |
| 200 | 200 | private function validateFilePath($form, $dirs) |
@@ -132,7 +132,7 @@ |
||
| 132 | 132 | * @param string $where 追加の検索条件 |
| 133 | 133 | * @param string[] $parameters 追加の検索パラメーター |
| 134 | 134 | * |
| 135 | - * @return array ページ属性の配列 |
|
| 135 | + * @return null|\Symfony\Component\HttpFoundation\Request ページ属性の配列 |
|
| 136 | 136 | */ |
| 137 | 137 | public function getPageList($where = null, $parameters = []) |
| 138 | 138 | { |
@@ -37,6 +37,9 @@ discard block |
||
| 37 | 37 | $logger->error($message, $context); |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | +/** |
|
| 41 | + * @param string $message |
|
| 42 | + */ |
|
| 40 | 43 | function log_warning($message, array $context = []) |
| 41 | 44 | { |
| 42 | 45 | $logger = LoggerFacade::create(); |
@@ -55,6 +58,9 @@ discard block |
||
| 55 | 58 | $logger->info($message, $context); |
| 56 | 59 | } |
| 57 | 60 | |
| 61 | +/** |
|
| 62 | + * @param string $message |
|
| 63 | + */ |
|
| 58 | 64 | function log_debug($message, array $context = []) |
| 59 | 65 | { |
| 60 | 66 | $logger = LoggerFacade::create(); |
@@ -82,7 +82,7 @@ |
||
| 82 | 82 | * |
| 83 | 83 | * @throws PluginException |
| 84 | 84 | * |
| 85 | - * @param string $command |
|
| 85 | + * @param string[] $commands |
|
| 86 | 86 | */ |
| 87 | 87 | public function runCommand($commands, $output = null, $init = true) |
| 88 | 88 | { |