Failed Conditions
Pull Request — 4.0 (#4528)
by Kentaro
07:14
created
src/Eccube/Service/Composer/ComposerProcessService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
      *
82 82
      * @throws PluginException
83 83
      *
84
-     * @param string $command
84
+     * @param string[] $commands
85 85
      */
86 86
     public function runCommand($commands, $output = null, $init = true)
87 87
     {
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
@@ -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/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.
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.
src/Eccube/Command/InstallerCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -245,6 +245,9 @@
 block discarded – undo
245 245
         $this->io->success('EC-CUBE installation successful.');
246 246
     }
247 247
 
248
+    /**
249
+     * @param string $databaseUrl
250
+     */
248 251
     protected function getDatabaseName($databaseUrl)
249 252
     {
250 253
         if (0 === strpos($databaseUrl, 'sqlite')) {
Please login to merge, or discard this patch.
src/Eccube/Controller/AbstractController.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -112,6 +112,9 @@  discard block
 block discarded – undo
112 112
         $this->eventDispatcher = $eventDispatcher;
113 113
     }
114 114
 
115
+    /**
116
+     * @param string $message
117
+     */
115 118
     public function addSuccess($message, $namespace = 'front')
116 119
     {
117 120
         $this->session->getFlashBag()->add('eccube.'.$namespace.'.success', $message);
@@ -122,6 +125,9 @@  discard block
 block discarded – undo
122 125
         $this->session->getFlashBag()->add('eccube.'.$namespace.'.error', $message);
123 126
     }
124 127
 
128
+    /**
129
+     * @param string $message
130
+     */
125 131
     public function addDanger($message, $namespace = 'front')
126 132
     {
127 133
         $this->session->getFlashBag()->add('eccube.'.$namespace.'.danger', $message);
@@ -132,6 +138,9 @@  discard block
 block discarded – undo
132 138
         $this->session->getFlashBag()->add('eccube.'.$namespace.'.warning', $message);
133 139
     }
134 140
 
141
+    /**
142
+     * @param string $message
143
+     */
135 144
     public function addInfo($message, $namespace = 'front')
136 145
     {
137 146
         $this->session->getFlashBag()->add('eccube.'.$namespace.'.info', $message);
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Product/CsvImportController.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -1347,6 +1347,7 @@
 block discarded – undo
1347 1347
 
1348 1348
     /**
1349 1349
      * 登録、更新時のエラー画面表示
1350
+     * @param string $message
1350 1351
      */
1351 1352
     protected function addErrors($message)
1352 1353
     {
Please login to merge, or discard this patch.