@@ -140,6 +140,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | { |
@@ -24,7 +24,6 @@ |
||
| 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 |