Completed
Push — master ( 1d4a66...e7d536 )
by Filipe
21:47 queued 13:36
created
src/Element/FieldSet.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     /**
48 48
      * Checks if all elements are valid
49 49
      *
50
-     * @return mixed
50
+     * @return boolean
51 51
      */
52 52
     public function isValid()
53 53
     {
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
      * This value here is just a string and it can be the content that
136 136
      * goes inside <label> tags for example.
137 137
      *
138
-     * @return mixed
138
+     * @return string
139 139
      */
140 140
     public function getValue()
141 141
     {
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      * This name can be null however a form or field set will use it
149 149
      * in the FormInterface::get() method to retrieve it.
150 150
      *
151
-     * @return mixed
151
+     * @return string
152 152
      */
153 153
     public function getName()
154 154
     {
Please login to merge, or discard this patch.
src/Parser/YamlParser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
     /**
130 130
      * Sets definition data for form creation
131 131
      *
132
-     * @param mixed $definitions
132
+     * @param string $definitions
133 133
      *
134 134
      * @return self|$this|ParserInterface
135 135
      */
Please login to merge, or discard this patch.
src/Input/AbstractInput.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     /**
70 70
      * Get input name
71 71
      *
72
-     * @return mixed
72
+     * @return string
73 73
      */
74 74
     public function getName()
75 75
     {
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
      * 
147 147
      * @param mixed $value
148 148
      * 
149
-     * @return mixed
149
+     * @return AbstractInput
150 150
      */
151 151
     public function setValue($value)
152 152
     {
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
     /**
282 282
      * If input is multiple get the instance value of it
283 283
      *
284
-     * @return mixed
284
+     * @return string|null
285 285
      */
286 286
     public function getInstanceValue()
287 287
     {
Please login to merge, or discard this patch.