Completed
Pull Request — master (#51)
by Thierry
01:27
created
src/Request/Handler/Handler.php 2 patches
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -140,6 +140,7 @@  discard block
 block discarded – undo
140 140
      * This is the pre-request processing callback passed to the Jaxon library.
141 141
      *
142 142
      * @param  boolean  &$bEndRequest if set to true, the request processing is interrupted.
143
+     * @param boolean $bEndRequest
143 144
      *
144 145
      * @return Jaxon\Response\Response  the Jaxon response
145 146
      */
@@ -170,6 +171,7 @@  discard block
 block discarded – undo
170 171
     /**
171 172
      * This callback is called whenever an invalid request is processed.
172 173
      *
174
+     * @param string $sMessage
173 175
      * @return Jaxon\Response\Response  the Jaxon response
174 176
      */
175 177
     public function onInvalid($sMessage)
@@ -236,7 +238,7 @@  discard block
 block discarded – undo
236 238
      * Calls each of the request plugins to request that they process the current request.
237 239
      * If any plugin processes the request, it will return true.
238 240
      *
239
-     * @return boolean
241
+     * @return boolean|null
240 242
      */
241 243
     public function processRequest()
242 244
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@
 block discarded – undo
24 24
 use Jaxon\Plugin\Manager as PluginManager;
25 25
 use Jaxon\Response\Manager as ResponseManager;
26 26
 use Jaxon\Request\Plugin\FileUpload;
27
-
28 27
 use Exception;
29 28
 
30 29
 class Handler
Please login to merge, or discard this patch.