@@ -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; |
@@ -347,7 +347,7 @@ |
||
| 347 | 347 | * |
| 348 | 348 | * @param null $currency |
| 349 | 349 | * |
| 350 | - * @return bool|string |
|
| 350 | + * @return string|null |
|
| 351 | 351 | */ |
| 352 | 352 | public function getCurrencySymbol($currency = null) |
| 353 | 353 | { |
@@ -111,7 +111,6 @@ |
||
| 111 | 111 | /** |
| 112 | 112 | * Doctrineのキャッシュを削除します. |
| 113 | 113 | * |
| 114 | - * @param null $env |
|
| 115 | 114 | * |
| 116 | 115 | * @return string |
| 117 | 116 | * |
@@ -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 | { |
@@ -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) |
@@ -386,6 +386,9 @@ |
||
| 386 | 386 | $this->init($BaseInfo); |
| 387 | 387 | } |
| 388 | 388 | |
| 389 | + /** |
|
| 390 | + * @param string $packageNames |
|
| 391 | + */ |
|
| 389 | 392 | private function dropTableToExtra($packageNames) |
| 390 | 393 | { |
| 391 | 394 | foreach (explode(' ', trim($packageNames)) as $packageName) { |
@@ -54,7 +54,6 @@ |
||
| 54 | 54 | * @param callable $callback Metadata を生成した後に実行されるコールバック関数 |
| 55 | 55 | * @param array $generatedFiles Proxy ファイルパスの配列 |
| 56 | 56 | * @param string $proxiesDirectory Proxy ファイルを格納したディレクトリ |
| 57 | - * @param bool $saveMode UpdateSchema を即時実行する場合 true |
|
| 58 | 57 | * @param string $outputDir Metadata の出力先ディレクトリ |
| 59 | 58 | */ |
| 60 | 59 | public function executeCallback(callable $callback, $generatedFiles, $proxiesDirectory, $outputDir = null) |
@@ -39,6 +39,9 @@ |
||
| 39 | 39 | $I->loginAsMember('customer1', 'password'); |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | + /** |
|
| 43 | + * @param string $email |
|
| 44 | + */ |
|
| 42 | 45 | private function newCustomer($email) |
| 43 | 46 | { |
| 44 | 47 | $Customer = new Customer(); |
@@ -412,7 +412,6 @@ discard block |
||
| 412 | 412 | } |
| 413 | 413 | |
| 414 | 414 | /** |
| 415 | - * @param \Doctrine\ORM\EntityManagerInterface $em |
|
| 416 | 415 | * @param array $excludes |
| 417 | 416 | * |
| 418 | 417 | * @return null|Request |
@@ -447,7 +446,7 @@ discard block |
||
| 447 | 446 | /** |
| 448 | 447 | * @param \DateTime $dateTime |
| 449 | 448 | * |
| 450 | - * @return array|mixed |
|
| 449 | + * @return null|Request |
|
| 451 | 450 | * |
| 452 | 451 | * @throws \Doctrine\ORM\NonUniqueResultException |
| 453 | 452 | */ |
@@ -484,7 +483,7 @@ discard block |
||
| 484 | 483 | /** |
| 485 | 484 | * @param \DateTime $dateTime |
| 486 | 485 | * |
| 487 | - * @return array|mixed |
|
| 486 | + * @return null|Request |
|
| 488 | 487 | * |
| 489 | 488 | * @throws \Doctrine\ORM\NonUniqueResultException |
| 490 | 489 | */ |
@@ -523,7 +522,7 @@ discard block |
||
| 523 | 522 | /** |
| 524 | 523 | * 在庫切れ商品数を取得 |
| 525 | 524 | * |
| 526 | - * @return mixed |
|
| 525 | + * @return null|Request |
|
| 527 | 526 | * |
| 528 | 527 | * @throws \Doctrine\ORM\NonUniqueResultException |
| 529 | 528 | */ |
@@ -543,7 +542,7 @@ discard block |
||
| 543 | 542 | /** |
| 544 | 543 | * 商品数を取得 |
| 545 | 544 | * |
| 546 | - * @return mixed |
|
| 545 | + * @return null|Request |
|
| 547 | 546 | * |
| 548 | 547 | * @throws \Doctrine\ORM\NonUniqueResultException |
| 549 | 548 | */ |
@@ -560,7 +559,7 @@ discard block |
||
| 560 | 559 | /** |
| 561 | 560 | * 本会員数を取得 |
| 562 | 561 | * |
| 563 | - * @return mixed |
|
| 562 | + * @return null|Request |
|
| 564 | 563 | * |
| 565 | 564 | * @throws \Doctrine\ORM\NonUniqueResultException |
| 566 | 565 | */ |
@@ -579,7 +578,7 @@ discard block |
||
| 579 | 578 | * |
| 580 | 579 | * @param Carbon $fromDate |
| 581 | 580 | * @param Carbon $toDate |
| 582 | - * @param $format |
|
| 581 | + * @param string $format |
|
| 583 | 582 | * |
| 584 | 583 | * @return array |
| 585 | 584 | */ |