Completed
Push — experimental/symfony4.4-clear-... ( 9ac73e...bb33df )
by Kentaro
05:45
created
src/Eccube/Service/PluginApiService.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -249,6 +249,9 @@
 block discarded – undo
249 249
         $this->updatePluginStatus('/status/uninstalled', $Plugin);
250 250
     }
251 251
 
252
+    /**
253
+     * @param string $url
254
+     */
252 255
     private function updatePluginStatus($url, Plugin $Plugin)
253 256
     {
254 257
         if ($Plugin->getSource()) {
Please login to merge, or discard this patch.
src/Eccube/Service/PointHelper.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     /**
97 97
      * 金額をポイントに変換する.
98 98
      *
99
-     * @param $price
99
+     * @param double $price
100 100
      *
101 101
      * @return float ポイント
102 102
      *
@@ -152,6 +152,9 @@  discard block
 block discarded – undo
152 152
         }
153 153
     }
154 154
 
155
+    /**
156
+     * @param integer $point
157
+     */
155 158
     public function prepare(ItemHolderInterface $itemHolder, $point)
156 159
     {
157 160
         // ユーザの保有ポイントを減算
@@ -159,6 +162,9 @@  discard block
 block discarded – undo
159 162
         $Customer->setPoint($Customer->getPoint() - $point);
160 163
     }
161 164
 
165
+    /**
166
+     * @param integer $point
167
+     */
162 168
     public function rollback(ItemHolderInterface $itemHolder, $point)
163 169
     {
164 170
         // 利用したポイントをユーザに戻す.
Please login to merge, or discard this patch.
src/Eccube/Service/PurchaseFlow/ValidatorTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 {
20 20
     /**
21 21
      * @param ProductClass $ProductClass
22
-     * @param $errorCode
22
+     * @param string $errorCode
23 23
      *
24 24
      * @throws InvalidItemException
25 25
      */
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
@@ -47,7 +47,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     {
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
@@ -355,7 +355,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.