Completed
Push — master ( 667b73...078f7b )
by NOBU
16:19
created
src/Eccube/Controller/Install/InstallController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -256,6 +256,9 @@
 block discarded – undo
256 256
     }
257 257
 
258 258
 
259
+    /**
260
+     * @param InstallApplication $app
261
+     */
259 262
     private function checkModules($app)
260 263
     {
261 264
         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/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/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.
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.