Completed
Push — 4.0 ( b06cd9...9f28ed )
by
unknown
04:55 queued 10s
created
codeception/acceptance/EA10PluginCest.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -404,6 +404,9 @@  discard block
 block discarded – undo
404 404
         $Horizon->インストール();
405 405
     }
406 406
 
407
+    /**
408
+     * @param string $fileName
409
+     */
407 410
     private function publishPlugin($fileName)
408 411
     {
409 412
         copy(codecept_data_dir().'/'.'plugins/'.$fileName, codecept_root_dir().'/repos/'.$fileName);
@@ -547,6 +550,9 @@  discard block
 block discarded – undo
547 550
     /** @var Store_Plugin */
548 551
     protected $dependency;
549 552
 
553
+    /**
554
+     * @param string $code
555
+     */
550 556
     public function __construct(AcceptanceTester $I, $code, Store_Plugin $dependency = null)
551 557
     {
552 558
         parent::__construct($I);
@@ -679,6 +685,9 @@  discard block
 block discarded – undo
679 685
         return $this;
680 686
     }
681 687
 
688
+    /**
689
+     * @param string $fileName
690
+     */
682 691
     protected function publishPlugin($fileName)
683 692
     {
684 693
         $published = copy(codecept_data_dir().'/'.'plugins/'.$fileName, codecept_root_dir().'/repos/'.$fileName);
@@ -697,6 +706,9 @@  discard block
 block discarded – undo
697 706
     /** @var string */
698 707
     private $code;
699 708
 
709
+    /**
710
+     * @param string $code
711
+     */
700 712
     public function __construct(AcceptanceTester $I, $code)
701 713
     {
702 714
         parent::__construct($I);
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
@@ -102,7 +102,6 @@
 block discarded – undo
102 102
      * Doctrineのキャッシュを削除します.
103 103
      * APP_ENV=prodの場合のみ実行されます.
104 104
      *
105
-     * @param null $env
106 105
      *
107 106
      * @return string
108 107
      *
Please login to merge, or discard this patch.
src/Eccube/Command/UpdateSchemaDoctrineCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -112,6 +112,9 @@
 block discarded – undo
112 112
         }
113 113
     }
114 114
 
115
+    /**
116
+     * @param string $outputDir
117
+     */
115 118
     protected function removeOutputDir($outputDir)
116 119
     {
117 120
         if (file_exists($outputDir)) {
Please login to merge, or discard this patch.
src/Eccube/Service/SchemaService.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,6 @@  discard block
 block discarded – undo
45 45
      * @param callable $callback Metadata を生成した後に実行されるコールバック関数
46 46
      * @param array $generatedFiles Proxy ファイルパスの配列
47 47
      * @param string $proxiesDirectory Proxy ファイルを格納したディレクトリ
48
-     * @param bool $saveMode UpdateSchema を即時実行する場合 true
49 48
      * @param string $outputDir Metadata の出力先ディレクトリ
50 49
      */
51 50
     public function executeCallback(callable $callback, $generatedFiles, $proxiesDirectory, $outputDir = null)
@@ -107,7 +106,7 @@  discard block
 block discarded – undo
107 106
     /**
108 107
      * ネームスペースに含まれるEntityのテーブルを削除する
109 108
      *
110
-     * @param $targetNamespace string 削除対象のネームスペース
109
+     * @param string $targetNamespace string 削除対象のネームスペース
111 110
      */
112 111
     public function dropTable($targetNamespace)
113 112
     {
Please login to merge, or discard this patch.