Completed
Push — di ( 546a0f...1eed04 )
by Tim
03:33
created
src/AppserverIo/Routlt/Description/ActionDescriptor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@
 block discarded – undo
172 172
      *
173 173
      * @param \AppserverIo\Lang\Reflection\MethodInterface $reflectionMethod The reflection method with the action configuration
174 174
      *
175
-     * @return \AppserverIo\Routlt\Description\ActionDescriptorInterface The initialized descriptor
175
+     * @return null|ActionDescriptor The initialized descriptor
176 176
      */
177 177
     public function fromReflectionMethod(MethodInterface $reflectionMethod)
178 178
     {
Please login to merge, or discard this patch.
src/AppserverIo/Routlt/Description/PathDescriptor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -304,7 +304,7 @@
 block discarded – undo
304 304
      *
305 305
      * @param \AppserverIo\Lang\Reflection\ClassInterface $reflectionClass The reflection class with the bean configuration
306 306
      *
307
-     * @return \AppserverIo\Routlt\Description\PathDescriptorInterface The initialized descriptor
307
+     * @return null|PathDescriptor The initialized descriptor
308 308
      */
309 309
     public function fromReflectionClass(ClassInterface $reflectionClass)
310 310
     {
Please login to merge, or discard this patch.
src/AppserverIo/Routlt/Description/ResultDescriptor.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
     /**
156 156
      * Returns the HTTP response code that has to be send.
157 157
      *
158
-     * @return integer The HTTP response code
158
+     * @return string The HTTP response code
159 159
      */
160 160
     public function getCode()
161 161
     {
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
      *
190 190
      * @param \AppserverIo\Lang\Reflection\ClassInterface $reflectionClass The reflection class with the bean configuration
191 191
      *
192
-     * @return \AppserverIo\Routlt\Description\PathDescriptorInterface The initialized descriptor
192
+     * @return null|ResultDescriptor The initialized descriptor
193 193
      */
194 194
     public function fromReflectionClass(ClassInterface $reflectionClass)
195 195
     {
Please login to merge, or discard this patch.
src/AppserverIo/Routlt/Results/AbstractResult.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@
 block discarded – undo
144 144
     /**
145 145
      * Returns the HTTP response code that has to be send.
146 146
      *
147
-     * @return integer The HTTP response code
147
+     * @return string The HTTP response code
148 148
      */
149 149
     public function getCode()
150 150
     {
Please login to merge, or discard this patch.