Completed
Pull Request — experimental/sf (#3412)
by Kentaro
14:51 queued 07:29
created
codeception/_support/Page/Admin/ShippingEditPage.php 1 patch
Doc Comments   +27 added lines patch added patch discarded remove patch
@@ -26,6 +26,9 @@  discard block
 block discarded – undo
26 26
         return $page;
27 27
     }
28 28
 
29
+    /**
30
+     * @param \AcceptanceTester $I
31
+     */
29 32
     public static function at($I)
30 33
     {
31 34
         $page = new self($I);
@@ -46,30 +49,45 @@  discard block
 block discarded – undo
46 49
         return $this;
47 50
     }
48 51
 
52
+    /**
53
+     * @param string $value
54
+     */
49 55
     public function 入力_姓($value, $num = 0)
50 56
     {
51 57
         $this->tester->fillField(['id' => 'form_shippings_'.$num.'_name_name01'], $value);
52 58
         return $this;
53 59
     }
54 60
 
61
+    /**
62
+     * @param string $value
63
+     */
55 64
     public function 入力_名($value, $num = 0)
56 65
     {
57 66
         $this->tester->fillField(['id' => 'form_shippings_'.$num.'_name_name02'], $value);
58 67
         return $this;
59 68
     }
60 69
 
70
+    /**
71
+     * @param string $value
72
+     */
61 73
     public function 入力_セイ($value, $num = 0)
62 74
     {
63 75
         $this->tester->fillField(['id' => 'form_shippings_'.$num.'_kana_kana01'], $value);
64 76
         return $this;
65 77
     }
66 78
 
79
+    /**
80
+     * @param string $value
81
+     */
67 82
     public function 入力_メイ($value, $num = 0)
68 83
     {
69 84
         $this->tester->fillField(['id' => 'form_shippings_'.$num.'_kana_kana02'], $value);
70 85
         return $this;
71 86
     }
72 87
 
88
+    /**
89
+     * @param string $value
90
+     */
73 91
     public function 入力_郵便番号($value, $num = 0)
74 92
     {
75 93
         $this->tester->fillField(['id' => 'form_shippings_'.$num.'_postal_code'], $value);
@@ -83,18 +101,27 @@  discard block
 block discarded – undo
83 101
         return $this;
84 102
     }
85 103
 
104
+    /**
105
+     * @param string $value
106
+     */
86 107
     public function 入力_市区町村名($value, $num = 0)
87 108
     {
88 109
         $this->tester->fillField(['id' => 'form_shippings_'.$num.'_address_addr01'], $value);
89 110
         return $this;
90 111
     }
91 112
 
113
+    /**
114
+     * @param string $value
115
+     */
92 116
     public function 入力_番地_ビル名($value, $num = 0)
93 117
     {
94 118
         $this->tester->fillField(['id' => 'form_shippings_'.$num.'_address_addr02'], $value);
95 119
         return $this;
96 120
     }
97 121
 
122
+    /**
123
+     * @param string $value
124
+     */
98 125
     public function 入力_電話番号($value, $num = 0)
99 126
     {
100 127
         $this->tester->fillField(['id' => 'form_shippings_'.$num.'_phone_number'], $value);
Please login to merge, or discard this patch.
src/Eccube/Twig/Extension/EccubeExtension.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     /**
37 37
      * Returns a list of functions to add to the existing list.
38 38
      *
39
-     * @return array An array of functions
39
+     * @return TwigFunction[] An array of functions
40 40
      */
41 41
     public function getFunctions()
42 42
     {
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     /**
59 59
      * Returns a list of filters.
60 60
      *
61
-     * @return array
61
+     * @return TwigFilter[]
62 62
      */
63 63
     public function getFilters()
64 64
     {
Please login to merge, or discard this patch.
src/Eccube/Form/Type/Admin/OrderItemType.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -90,7 +90,6 @@  discard block
 block discarded – undo
90 90
      * @param EccubeConfig $eccubeConfig
91 91
      * @param ProductClassRepository $productClassRepository
92 92
      * @param OrderItemRepository $orderItemRepository
93
-     * @param RequestStack $requestStack
94 93
      */
95 94
     public function __construct(
96 95
         EntityManagerInterface $entityManager,
@@ -243,7 +242,7 @@  discard block
 block discarded – undo
243 242
 
244 243
     /**
245 244
      * @param FormInterface $form
246
-     * @param ValidatorInterface $errors
245
+     * @param ConstraintViolationListInterface $errors
247 246
      */
248 247
     protected function addErrorsIfExists(FormInterface $form, ConstraintViolationListInterface $errors)
249 248
     {
Please login to merge, or discard this patch.
src/Eccube/Util/CacheUtil.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -46,6 +46,9 @@
 block discarded – undo
46 46
         $this->kernel = $kernel;
47 47
     }
48 48
 
49
+    /**
50
+     * @param string $env
51
+     */
49 52
     public function clearCache($env = null)
50 53
     {
51 54
         $this->clearCacheAfterResponse = $env;
Please login to merge, or discard this patch.