Completed
Push — admin_system_log ( b93597...816fee )
by NOBU
12:59
created
src/Eccube/Controller/Mypage/MypageController.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      * @param Application $app
61 61
      * @param Request     $request
62 62
      *
63
-     * @return string
63
+     * @return \Symfony\Component\HttpFoundation\Response
64 64
      */
65 65
     public function index(Application $app, Request $request)
66 66
     {
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
      * @param Application $app
88 88
      * @param Request     $request
89 89
      *
90
-     * @return string
90
+     * @return \Symfony\Component\HttpFoundation\Response
91 91
      */
92 92
     public function history(Application $app, Request $request, $id)
93 93
     {
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
      * @param Application $app
116 116
      * @param Request     $request
117 117
      *
118
-     * @return string
118
+     * @return \Symfony\Component\HttpFoundation\RedirectResponse
119 119
      */
120 120
     public function order(Application $app, Request $request)
121 121
     {
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
      * @param Application $app
148 148
      * @param Request     $request
149 149
      *
150
-     * @return string
150
+     * @return \Symfony\Component\HttpFoundation\Response
151 151
      */
152 152
     public function favorite(Application $app, Request $request)
153 153
     {
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
@@ -1129,6 +1129,7 @@
 block discarded – undo
1129 1129
 
1130 1130
     /**
1131 1131
      * 非会員でのお客様情報変更時の入力チェック
1132
+     * @param Application $app
1132 1133
      */
1133 1134
     private function customerValidation($app, $data) {
1134 1135
 
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.