Completed
Pull Request — master (#1181)
by NOBU
18:05
created
src/Eccube/Controller/Mypage/MypageController.php 1 patch
Doc Comments   +5 added lines, -6 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      * @param Application $app
63 63
      * @param Request     $request
64 64
      *
65
-     * @return string
65
+     * @return \Symfony\Component\HttpFoundation\Response
66 66
      */
67 67
     public function index(Application $app, Request $request)
68 68
     {
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      * @param Application $app
90 90
      * @param Request     $request
91 91
      *
92
-     * @return string
92
+     * @return \Symfony\Component\HttpFoundation\Response
93 93
      */
94 94
     public function history(Application $app, Request $request, $id)
95 95
     {
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
      * @param Request     $request
119 119
      * @param id     $id
120 120
      *
121
-     * @return string
121
+     * @return \Symfony\Component\HttpFoundation\RedirectResponse
122 122
      */
123 123
     public function order(Application $app, Request $request, $id)
124 124
     {
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
      * @param Application $app
156 156
      * @param Request     $request
157 157
      *
158
-     * @return string
158
+     * @return \Symfony\Component\HttpFoundation\Response
159 159
      */
160 160
     public function favorite(Application $app, Request $request)
161 161
     {
@@ -182,9 +182,8 @@  discard block
 block discarded – undo
182 182
 
183 183
     /**
184 184
      * @param Application $app
185
-     * @param Request     $request
186 185
      *
187
-     * @return string
186
+     * @return \Symfony\Component\HttpFoundation\RedirectResponse
188 187
      */
189 188
     public function delete(Application $app, $id)
190 189
     {
Please login to merge, or discard this patch.
src/Eccube/Controller/Mypage/WithdrawController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
      * Complete
88 88
      *
89 89
      * @param  Application $app
90
-     * @return mixed
90
+     * @return \Symfony\Component\HttpFoundation\Response
91 91
      */
92 92
     public function complete(Application $app, Request $request)
93 93
     {
Please login to merge, or discard this patch.
src/Eccube/Controller/ShoppingController.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -1188,6 +1188,7 @@
 block discarded – undo
1188 1188
 
1189 1189
     /**
1190 1190
      * 非会員でのお客様情報変更時の入力チェック
1191
+     * @param Application $app
1191 1192
      */
1192 1193
     private function customerValidation($app, $data) {
1193 1194
 
Please login to merge, or discard this patch.
src/Eccube/Form/DataTransformer/EntityToIdTransformer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
 
43 43
     /**
44 44
      * @param ObjectManager $om
45
-     * @param stging $className
45
+     * @param string $className
46 46
      */
47 47
     public function __construct(ObjectManager $om, $className)
48 48
     {
Please login to merge, or discard this patch.
src/Eccube/Form/Type/Admin/OrderType.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -38,6 +38,9 @@
 block discarded – undo
38 38
 
39 39
     protected $app;
40 40
 
41
+    /**
42
+     * @param \Silex\Application $app
43
+     */
41 44
     public function __construct($app)
42 45
     {
43 46
         $this->app = $app;
Please login to merge, or discard this patch.
src/Eccube/Form/Type/Admin/ShipmentItemType.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@
 block discarded – undo
36 36
 {
37 37
     protected $app;
38 38
 
39
+    /**
40
+     * @param \Silex\Application $app
41
+     */
39 42
     public function __construct($app)
40 43
     {
41 44
         $this->app = $app;
Please login to merge, or discard this patch.
src/Eccube/Repository/MemberRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@
 block discarded – undo
130 130
     /**
131 131
      * @param  \Eccube\Entity\Member $Member
132 132
      *
133
-     * @return void
133
+     * @return boolean
134 134
      */
135 135
     public function up(\Eccube\Entity\Member $Member)
136 136
     {
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
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
      * @param  int|null|\Eccube\Entity\ProductClass   $ProductClass 商品規格
66 66
      * @param  int|null|\Eccube\Entity\Master\Pref    $Pref         都道府県
67 67
      * @param  int|null|\Eccube\Entity\Master\Country $Country      国
68
-     * @return \Eccube\Entity\TaxRule                 税設定情報
68
+     * @return integer                 税設定情報
69 69
      *
70 70
      * @throws NoResultException
71 71
      */
Please login to merge, or discard this patch.
src/Eccube/Service/CartService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -201,7 +201,7 @@
 block discarded – undo
201 201
     }
202 202
 
203 203
     /**
204
-     * @param  \Eccube\Entity\ProductClass|integer $ProductClass
204
+     * @param  string $ProductClass
205 205
      * @param  integer $quantity
206 206
      * @return \Eccube\Service\CartService
207 207
      * @throws CartException
Please login to merge, or discard this patch.