Completed
Push — experimental/sf ( bba429...028691 )
by Kentaro
45:42
created
src/Eccube/Form/Type/Admin/ProductClassEditType.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -270,6 +270,9 @@
 block discarded – undo
270 270
         });
271 271
     }
272 272
 
273
+    /**
274
+     * @param string $key
275
+     */
273 276
     protected function addErrors($key, FormInterface $form, ConstraintViolationListInterface $errors)
274 277
     {
275 278
         foreach ($errors as $error) {
Please login to merge, or discard this patch.
src/Eccube/Form/Type/Front/CustomerAddressType.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,6 @@
 block discarded – undo
47 47
     protected $eccubeConfig;
48 48
 
49 49
     /**
50
-     * @param array $config
51 50
      */
52 51
     public function __construct(EccubeConfig $eccubeConfig)
53 52
     {
Please login to merge, or discard this patch.
src/Eccube/Form/Type/SearchProductType.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,6 @@
 block discarded – undo
48 48
     /**
49 49
      * SearchProductType constructor.
50 50
      *
51
-     * @param Application $app
52 51
      */
53 52
     public function __construct(CategoryRepository $categoryRepository)
54 53
     {
Please login to merge, or discard this patch.
src/Eccube/Repository/BlockRepository.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      * @param $block_id
64 64
      * @param $DeviceType
65 65
      *
66
-     * @return array|\Eccube\Entity\Block
66
+     * @return Block|null
67 67
      */
68 68
     public function findOrCreate($block_id, $DeviceType)
69 69
     {
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
      *
125 125
      * @param  \Eccube\Entity\Master\DeviceType $DeviceType
126 126
      *
127
-     * @return array
127
+     * @return null|\Symfony\Component\HttpFoundation\Request
128 128
      */
129 129
     public function getList($DeviceType)
130 130
     {
Please login to merge, or discard this patch.
src/Eccube/Repository/TaxRuleRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
      * @param  int|null|\Eccube\Entity\Master\Pref    $Pref         都道府県
101 101
      * @param  int|null|\Eccube\Entity\Master\Country $Country      国
102 102
      *
103
-     * @return \Eccube\Entity\TaxRule                 税設定情報
103
+     * @return integer                 税設定情報
104 104
      *
105 105
      * @throws NoResultException
106 106
      */
Please login to merge, or discard this patch.
src/Eccube/Service/Composer/ComposerApiService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -242,7 +242,7 @@
 block discarded – undo
242 242
     /**
243 243
      * Get mode
244 244
      *
245
-     * @return mixed|string
245
+     * @return string
246 246
      */
247 247
     public function getMode()
248 248
     {
Please login to merge, or discard this patch.
src/Eccube/Service/Composer/OutputParser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@
 block discarded – undo
131 131
 
132 132
     /**
133 133
      * @param $rowArray
134
-     * @param $key
134
+     * @param string $key
135 135
      *
136 136
      * @return array
137 137
      */
Please login to merge, or discard this patch.
src/Eccube/Service/EntityProxyService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -204,7 +204,7 @@
 block discarded – undo
204 204
     /**
205 205
      * EntityからTraitを削除.
206 206
      *
207
-     * @param $entityTokens Tokens Entityのトークン
207
+     * @param Tokens $entityTokens Tokens Entityのトークン
208 208
      * @param $trait string 削除するTraitのFQCN
209 209
      */
210 210
     private function removeTrait($entityTokens, $trait)
Please login to merge, or discard this patch.
src/Eccube/Service/ShoppingService.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
     /**
280 280
      * 非会員情報を取得
281 281
      *
282
-     * @param $sesisonKey
282
+     * @param string $sesisonKey
283 283
      *
284 284
      * @return $Customer|null
285 285
      */
@@ -310,7 +310,7 @@  discard block
 block discarded – undo
310 310
     /**
311 311
      * 受注情報を作成
312 312
      *
313
-     * @param $Customer
313
+     * @param null|Customer $Customer
314 314
      *
315 315
      * @return \Eccube\Entity\Order
316 316
      */
@@ -340,7 +340,7 @@  discard block
 block discarded – undo
340 340
      * 仮受注情報作成
341 341
      *
342 342
      * @param $Customer
343
-     * @param $preOrderId
343
+     * @param string $preOrderId
344 344
      *
345 345
      * @return mixed
346 346
      *
@@ -1257,7 +1257,7 @@  discard block
 block discarded – undo
1257 1257
      *
1258 1258
      * @param Order $Order
1259 1259
      *
1260
-     * @return MailHistory
1260
+     * @return null|\Symfony\Component\HttpFoundation\Request
1261 1261
      */
1262 1262
     public function sendOrderMail(Order $Order)
1263 1263
     {
Please login to merge, or discard this patch.