Completed
Push — remove-extra-tables ( 85f800 )
by Kiyotaka
05:51
created
src/Eccube/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -19,6 +19,9 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Eccube/Twig/Extension/EccubeExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -347,7 +347,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Eccube/Util/CacheUtil.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,6 @@
 block discarded – undo
111 111
     /**
112 112
      * Doctrineのキャッシュを削除します.
113 113
      *
114
-     * @param null $env
115 114
      *
116 115
      * @return string
117 116
      *
Please login to merge, or discard this patch.
src/Eccube/Repository/PageRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
codeception/acceptance/EA10PluginCest.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -436,6 +436,9 @@  discard block
 block discarded – undo
436 436
         $fs->remove($dir);
437 437
     }
438 438
 
439
+    /**
440
+     * @param string $fileName
441
+     */
439 442
     private function publishPlugin($fileName)
440 443
     {
441 444
         copy(codecept_data_dir().'/'.'plugins/'.$fileName, codecept_root_dir().'/repos/'.$fileName);
@@ -582,6 +585,9 @@  discard block
 block discarded – undo
582 585
     /** @var Store_Plugin */
583 586
     protected $dependency;
584 587
 
588
+    /**
589
+     * @param string $code
590
+     */
585 591
     public function __construct(AcceptanceTester $I, $code, Store_Plugin $dependency = null)
586 592
     {
587 593
         parent::__construct($I);
@@ -714,6 +720,9 @@  discard block
 block discarded – undo
714 720
         return $this;
715 721
     }
716 722
 
723
+    /**
724
+     * @param string $fileName
725
+     */
717 726
     protected function publishPlugin($fileName)
718 727
     {
719 728
         $published = copy(codecept_data_dir().'/'.'plugins/'.$fileName, codecept_root_dir().'/repos/'.$fileName);
@@ -732,6 +741,9 @@  discard block
 block discarded – undo
732 741
     /** @var string */
733 742
     private $code;
734 743
 
744
+    /**
745
+     * @param string $code
746
+     */
735 747
     public function __construct(AcceptanceTester $I, $code)
736 748
     {
737 749
         parent::__construct($I);
Please login to merge, or discard this patch.
src/Eccube/Form/Type/Admin/ProductType.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -194,7 +194,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
src/Eccube/Service/Composer/ComposerApiService.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -386,6 +386,9 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.
src/Eccube/Service/SchemaService.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,6 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.