Completed
Pull Request — experimental/sf (#3426)
by k-yamamura
122:47 queued 115:15
created
src/Eccube/Controller/Admin/Product/CsvImportController.php 1 patch
Doc Comments   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -784,6 +784,7 @@  discard block
 block discarded – undo
784 784
      *
785 785
      * @param $row
786 786
      * @param Product $Product
787
+     * @param CsvImportService $data
787 788
      */
788 789
     protected function createProductImage($row, Product $Product, $data, $headerByKey)
789 790
     {
@@ -830,7 +831,7 @@  discard block
 block discarded – undo
830 831
      *
831 832
      * @param $row
832 833
      * @param Product $Product
833
-     * @param $data
834
+     * @param CsvImportService $data
834 835
      * @param $headerByKey
835 836
      */
836 837
     protected function createProductCategory($row, Product $Product, $data, $headerByKey)
@@ -950,7 +951,7 @@  discard block
 block discarded – undo
950 951
      *
951 952
      * @param $row
952 953
      * @param Product $Product
953
-     * @param $data
954
+     * @param CsvImportService $data
954 955
      * @param $headerByKey
955 956
      * @param null $ClassCategory1
956 957
      * @param null $ClassCategory2
@@ -1102,7 +1103,7 @@  discard block
 block discarded – undo
1102 1103
      * @param $row
1103 1104
      * @param Product $Product
1104 1105
      * @param ProductClass $ProductClass
1105
-     * @param $data
1106
+     * @param CsvImportService $data
1106 1107
      *
1107 1108
      * @return ProductClass
1108 1109
      */
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Product/ProductController.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -976,6 +976,7 @@
 block discarded – undo
976 976
      *
977 977
      * @param \Eccube\Entity\Product $Product
978 978
      * @param \Eccube\Entity\Category $Category
979
+     * @param integer $count
979 980
      *
980 981
      * @return \Eccube\Entity\ProductCategory
981 982
      */
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Product/TagController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,6 @@
 block discarded – undo
43 43
      * @Template("@admin/Product/tag.twig")
44 44
      *
45 45
      * @param Request $request
46
-     * @param Tag|null $Tag
47 46
      *
48 47
      * @return array|\Symfony\Component\HttpFoundation\RedirectResponse
49 48
      */
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Setting/System/LogController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
     /**
77 77
      * parse log file
78 78
      *
79
-     * @param $logFile
79
+     * @param string $logFile
80 80
      * @param $formData
81 81
      *
82 82
      * @return array
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Store/TemplateController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
      * @param Request $request
113 113
      * @param \Eccube\Entity\Template $Template
114 114
      *
115
-     * @return mixed
115
+     * @return BinaryFileResponse
116 116
      */
117 117
     public function download(Request $request, \Eccube\Entity\Template $Template)
118 118
     {
Please login to merge, or discard this patch.
src/Eccube/Controller/Install/InstallController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -561,7 +561,6 @@
 block discarded – undo
561 561
     }
562 562
 
563 563
     /**
564
-     * @param array $options
565 564
      *
566 565
      * @return string
567 566
      *
Please login to merge, or discard this patch.
src/Eccube/Controller/NonMemberShoppingController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -358,7 +358,7 @@
 block discarded – undo
358 358
      *
359 359
      * @param array $data リクエストパラメータ
360 360
      *
361
-     * @return array
361
+     * @return \Symfony\Component\Validator\ConstraintViolationListInterface[]
362 362
      */
363 363
     protected function customerValidation(array &$data)
364 364
     {
Please login to merge, or discard this patch.
src/Eccube/Doctrine/Query/JoinClause.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     /**
46 46
      * JoinClause constructor.
47 47
      *
48
-     * @param $leftJoin
48
+     * @param boolean $leftJoin
49 49
      * @param $join
50 50
      * @param $alias
51 51
      * @param $conditionType
Please login to merge, or discard this patch.
src/Eccube/Form/Type/Admin/ProductClassEditType.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -260,6 +260,9 @@
 block discarded – undo
260 260
         });
261 261
     }
262 262
 
263
+    /**
264
+     * @param string $key
265
+     */
263 266
     protected function addErrors($key, FormInterface $form, ConstraintViolationListInterface $errors)
264 267
     {
265 268
         foreach ($errors as $error) {
Please login to merge, or discard this patch.