@@ -114,6 +114,9 @@ |
||
| 114 | 114 | } |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | + /** |
|
| 118 | + * @param string $outputDir |
|
| 119 | + */ |
|
| 117 | 120 | protected function removeOutputDir($outputDir) |
| 118 | 121 | { |
| 119 | 122 | if (file_exists($outputDir)) { |
@@ -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; |
@@ -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 | { |
@@ -47,7 +47,6 @@ discard block |
||
| 47 | 47 | * @param callable $callback Metadata を生成した後に実行されるコールバック関数 |
| 48 | 48 | * @param array $generatedFiles Proxy ファイルパスの配列 |
| 49 | 49 | * @param string $proxiesDirectory Proxy ファイルを格納したディレクトリ |
| 50 | - * @param bool $saveMode UpdateSchema を即時実行する場合 true |
|
| 51 | 50 | * @param string $outputDir Metadata の出力先ディレクトリ |
| 52 | 51 | */ |
| 53 | 52 | public function executeCallback(callable $callback, $generatedFiles, $proxiesDirectory, $outputDir = null) |
@@ -110,7 +109,7 @@ discard block |
||
| 110 | 109 | /** |
| 111 | 110 | * ネームスペースに含まれるEntityのテーブルを削除する |
| 112 | 111 | * |
| 113 | - * @param $targetNamespace string 削除対象のネームスペース |
|
| 112 | + * @param string $targetNamespace string 削除対象のネームスペース |
|
| 114 | 113 | */ |
| 115 | 114 | public function dropTable($targetNamespace) |
| 116 | 115 | { |
@@ -355,7 +355,7 @@ |
||
| 355 | 355 | * |
| 356 | 356 | * @param null $currency |
| 357 | 357 | * |
| 358 | - * @return bool|string |
|
| 358 | + * @return string|null |
|
| 359 | 359 | */ |
| 360 | 360 | public function getCurrencySymbol($currency = null) |
| 361 | 361 | { |
@@ -111,7 +111,6 @@ |
||
| 111 | 111 | /** |
| 112 | 112 | * Doctrineのキャッシュを削除します. |
| 113 | 113 | * |
| 114 | - * @param null $env |
|
| 115 | 114 | * |
| 116 | 115 | * @return string |
| 117 | 116 | * |