Completed
Push — experimental/symfony4.4-clear-... ( 9ac73e...bb33df )
by Kentaro
05:45
created
src/Eccube/Controller/CartController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
     }
129 129
 
130 130
     /**
131
-     * @param $Carts
131
+     * @param \Eccube\Entity\Cart[] $Carts
132 132
      *
133 133
      * @return \Symfony\Component\HttpFoundation\RedirectResponse
134 134
      */
Please login to merge, or discard this patch.
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/Entity/Order.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1750,7 +1750,7 @@
 block discarded – undo
1750 1750
         /**
1751 1751
          * Set orderStatus.
1752 1752
          *
1753
-         * @param \Eccube\Entity\Master\OrderStatus|null|object $orderStatus
1753
+         * @param null|Master\OrderStatus $orderStatus
1754 1754
          *
1755 1755
          * @return Order
1756 1756
          */
Please login to merge, or discard this patch.
src/Eccube/Event/TemplateEvent.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
     }
111 111
 
112 112
     /**
113
-     * @param $key
113
+     * @param string $key
114 114
      * @param $value
115 115
      */
116 116
     public function setParameter($key, $value)
Please login to merge, or discard this patch.
src/Eccube/EventListener/LogListener.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
     /**
90 90
      * ルーティング名を取得する.
91 91
      *
92
-     * @param $request
92
+     * @param \Symfony\Component\HttpFoundation\Request $request
93 93
      *
94 94
      * @return string
95 95
      */
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/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/Resource/functions/log.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -37,6 +37,9 @@  discard block
 block discarded – undo
37 37
     $logger->error($message, $context);
38 38
 }
39 39
 
40
+/**
41
+ * @param string $message
42
+ */
40 43
 function log_warning($message, array $context = [])
41 44
 {
42 45
     $logger = LoggerFacade::create();
@@ -55,6 +58,9 @@  discard block
 block discarded – undo
55 58
     $logger->info($message, $context);
56 59
 }
57 60
 
61
+/**
62
+ * @param string $message
63
+ */
58 64
 function log_debug($message, array $context = [])
59 65
 {
60 66
     $logger = LoggerFacade::create();
Please login to merge, or discard this patch.
src/Eccube/Service/Composer/ComposerProcessService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
      *
83 83
      * @throws PluginException
84 84
      *
85
-     * @param string $command
85
+     * @param string[] $commands
86 86
      */
87 87
     public function runCommand($commands, $output = null, $init = true)
88 88
     {
Please login to merge, or discard this patch.