Failed Conditions
Branch master (4e695e)
by Kentaro
05:02
created
src/Eccube/Controller/Admin/Store/TemplateController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,6 @@
 block discarded – undo
28 28
 use Eccube\Entity\Master\DeviceType;
29 29
 use Eccube\Util\Str;
30 30
 use Symfony\Component\Filesystem\Filesystem;
31
-use Symfony\Component\Finder\Finder;
32 31
 use Symfony\Component\Form\FormError;
33 32
 use Symfony\Component\HttpFoundation\Request;
34 33
 use Symfony\Component\HttpFoundation\Response;
Please login to merge, or discard this patch.
src/Eccube/Controller/Install/InstallController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -250,6 +250,9 @@
 block discarded – undo
250 250
     }
251 251
 
252 252
 
253
+    /**
254
+     * @param InstallApplication $app
255
+     */
253 256
     private function checkModules($app)
254 257
     {
255 258
         foreach ($this->required_modules as $module) {
Please login to merge, or discard this patch.
src/Eccube/Controller/Mypage/DeliveryController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      * Index
36 36
      *
37 37
      * @param  Application $app
38
-     * @return string
38
+     * @return \Symfony\Component\HttpFoundation\Response
39 39
      */
40 40
     public function index(Application $app, Request $request)
41 41
     {
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      *
52 52
      * @param  Application $app
53 53
      * @request  Symfony\Component\HttpFoundation\Request $app
54
-     * @return mixed
54
+     * @return \Symfony\Component\HttpFoundation\Response
55 55
      */
56 56
     public function edit(Application $app, Request $request, $id = null)
57 57
     {
Please login to merge, or discard this patch.
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/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/Form/Type/KanaType.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -25,9 +25,7 @@
 block discarded – undo
25 25
 
26 26
 use Symfony\Component\Form\AbstractType;
27 27
 use Symfony\Component\Form\FormBuilderInterface;
28
-use Symfony\Component\Form\FormEvents;
29 28
 use Symfony\Component\Validator\Constraints as Assert;
30
-use Symfony\Component\OptionsResolver\Options;
31 29
 use Symfony\Component\OptionsResolver\OptionsResolver;
32 30
 
33 31
 /**
Please login to merge, or discard this patch.