@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | * @throws Alpha\Exception\ResourceNotFoundException |
| 162 | 162 | * @throws Alpha\Exception\IllegalArguementException |
| 163 | 163 | * |
| 164 | - * @return Alpha\Util\Http\Response |
|
| 164 | + * @return Response |
|
| 165 | 165 | * |
| 166 | 166 | * @since 2.0 |
| 167 | 167 | */ |
@@ -348,7 +348,7 @@ discard block |
||
| 348 | 348 | * @throws Alpha\Exception\IllegalArguementException |
| 349 | 349 | * @throws Alpha\Exception\SecurityException |
| 350 | 350 | * |
| 351 | - * @return Alpha\Util\Http\Response |
|
| 351 | + * @return Response |
|
| 352 | 352 | * |
| 353 | 353 | * @since 2.0 |
| 354 | 354 | * |
@@ -438,7 +438,7 @@ discard block |
||
| 438 | 438 | * @throws Alpha\Exception\IllegalArguementException |
| 439 | 439 | * @throws Alpha\Exception\SecurityException |
| 440 | 440 | * |
| 441 | - * @return Alpha\Util\Http\Response |
|
| 441 | + * @return Response |
|
| 442 | 442 | * |
| 443 | 443 | * @since 2.0 |
| 444 | 444 | * |
@@ -532,7 +532,7 @@ discard block |
||
| 532 | 532 | * @throws Alpha\Exception\IllegalArguementException |
| 533 | 533 | * @throws Alpha\Exception\SecurityException |
| 534 | 534 | * |
| 535 | - * @return Alpha\Util\Http\Response |
|
| 535 | + * @return Response |
|
| 536 | 536 | * |
| 537 | 537 | * @since 2.0 |
| 538 | 538 | */ |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | * |
| 100 | 100 | * @param Alpha\Util\Http\Request |
| 101 | 101 | * |
| 102 | - * @return Alpha\Util\Http\Response |
|
| 102 | + * @return Response |
|
| 103 | 103 | * |
| 104 | 104 | * @throws Alpha\Exception\ResourceNotFoundException |
| 105 | 105 | * |
@@ -311,7 +311,7 @@ discard block |
||
| 311 | 311 | * |
| 312 | 312 | * @param Alpha\Util\Http\Request |
| 313 | 313 | * |
| 314 | - * @return Alpha\Util\Http\Response |
|
| 314 | + * @return Response |
|
| 315 | 315 | * |
| 316 | 316 | * @since 1.0 |
| 317 | 317 | */ |
@@ -425,7 +425,7 @@ discard block |
||
| 425 | 425 | * |
| 426 | 426 | * @param Alpha\Util\Http\Request |
| 427 | 427 | * |
| 428 | - * @return Alpha\Util\Http\Response |
|
| 428 | + * @return Response |
|
| 429 | 429 | * |
| 430 | 430 | * @since 2.0 |
| 431 | 431 | */ |
@@ -999,7 +999,7 @@ discard block |
||
| 999 | 999 | /** |
| 1000 | 1000 | * Method to return an access error for trespassing users. HTTP response header code will be 403. |
| 1001 | 1001 | * |
| 1002 | - * @return Alpha\Util\Http\Response |
|
| 1002 | + * @return Response |
|
| 1003 | 1003 | * |
| 1004 | 1004 | * @since 1.0 |
| 1005 | 1005 | */ |
@@ -1179,7 +1179,7 @@ discard block |
||
| 1179 | 1179 | /** |
| 1180 | 1180 | * Generates the two security fields to prevent remote form processing. |
| 1181 | 1181 | * |
| 1182 | - * @return array An array containing the two fields |
|
| 1182 | + * @return string[] An array containing the two fields |
|
| 1183 | 1183 | * |
| 1184 | 1184 | * @since 1.0 |
| 1185 | 1185 | */ |
@@ -1531,7 +1531,7 @@ discard block |
||
| 1531 | 1531 | * |
| 1532 | 1532 | * @param Alpha\Util\Http\Request $request |
| 1533 | 1533 | * |
| 1534 | - * @return Alpha\Util\Http\Response |
|
| 1534 | + * @return Response |
|
| 1535 | 1535 | * |
| 1536 | 1536 | * @since 2.0 |
| 1537 | 1537 | */ |
@@ -62,37 +62,36 @@ discard block |
||
| 62 | 62 | /** |
| 63 | 63 | * Handles GET HTTP requests. |
| 64 | 64 | * |
| 65 | - * @param Alpha\Util\Http\Request $request |
|
| 66 | 65 | * |
| 67 | 66 | * @since Alpha\Util\Http\Response |
| 68 | 67 | * @since 1.0 |
| 68 | + * @return \Alpha\Util\Http\Response|null |
|
| 69 | 69 | */ |
| 70 | 70 | public function doGET($params); |
| 71 | 71 | |
| 72 | 72 | /** |
| 73 | 73 | * Handles POST HTTP requests. |
| 74 | 74 | * |
| 75 | - * @param Alpha\Util\Http\Request $request |
|
| 76 | 75 | * |
| 77 | 76 | * @since Alpha\Util\Http\Response |
| 78 | 77 | * @since 1.0 |
| 78 | + * @return \Alpha\Util\Http\Response|null |
|
| 79 | 79 | */ |
| 80 | 80 | public function doPOST($params); |
| 81 | 81 | |
| 82 | 82 | /** |
| 83 | 83 | * Handles PUT HTTP requests. |
| 84 | 84 | * |
| 85 | - * @param Alpha\Util\Http\Request $request |
|
| 86 | 85 | * |
| 87 | 86 | * @since Alpha\Util\Http\Response |
| 88 | 87 | * @since 1.0 |
| 88 | + * @return \Alpha\Util\Http\Response |
|
| 89 | 89 | */ |
| 90 | 90 | public function doPUT($params); |
| 91 | 91 | |
| 92 | 92 | /** |
| 93 | 93 | * Handles PATCH HTTP requests. |
| 94 | 94 | * |
| 95 | - * @param Alpha\Util\Http\Request $request |
|
| 96 | 95 | * |
| 97 | 96 | * @since Alpha\Util\Http\Response |
| 98 | 97 | * @since 1.0 |
@@ -102,20 +101,20 @@ discard block |
||
| 102 | 101 | /** |
| 103 | 102 | * Handles DELETE HTTP requests. |
| 104 | 103 | * |
| 105 | - * @param Alpha\Util\Http\Request $request |
|
| 106 | 104 | * |
| 107 | 105 | * @since Alpha\Util\Http\Response |
| 108 | 106 | * @since 1.0 |
| 107 | + * @return \Alpha\Util\Http\Response |
|
| 109 | 108 | */ |
| 110 | 109 | public function doDELETE($params); |
| 111 | 110 | |
| 112 | 111 | /** |
| 113 | 112 | * Handles OPTIONS HTTP requests. |
| 114 | 113 | * |
| 115 | - * @param Alpha\Util\Http\Request $request |
|
| 116 | 114 | * |
| 117 | 115 | * @since Alpha\Util\Http\Response |
| 118 | 116 | * @since 1.0 |
| 117 | + * @return \Alpha\Util\Http\Response |
|
| 119 | 118 | */ |
| 120 | 119 | public function doOPTIONS($params); |
| 121 | 120 | } |
@@ -551,7 +551,7 @@ discard block |
||
| 551 | 551 | * |
| 552 | 552 | * @throws Alpha\Exception\IllegalArguementException |
| 553 | 553 | * |
| 554 | - * @return Alpha\Controller\Front\FrontController |
|
| 554 | + * @return FrontController |
|
| 555 | 555 | * |
| 556 | 556 | * @since 2.0 |
| 557 | 557 | */ |
@@ -573,7 +573,7 @@ discard block |
||
| 573 | 573 | * @param string $param The param name (as defined on the route between {} braces) |
| 574 | 574 | * @param mixed $defaultValue The value to use |
| 575 | 575 | * |
| 576 | - * @return Alpha\Controller\Front\FrontController |
|
| 576 | + * @return FrontController |
|
| 577 | 577 | * |
| 578 | 578 | * @since 2.0 |
| 579 | 579 | */ |
@@ -637,7 +637,7 @@ discard block |
||
| 637 | 637 | * |
| 638 | 638 | * @param Alpha\Util\Http\Request $request The request to process |
| 639 | 639 | * |
| 640 | - * @return Alpha\Util\Http\Response |
|
| 640 | + * @return Response |
|
| 641 | 641 | * |
| 642 | 642 | * @throws Alpha\Exception\ResourceNotFoundException |
| 643 | 643 | * @throws Alpha\Exception\ResourceNotAllowedException |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | * |
| 92 | 92 | * @param Alpha\Util\Http\Request $request |
| 93 | 93 | * |
| 94 | - * @return Alpha\Util\Http\Response |
|
| 94 | + * @return Response |
|
| 95 | 95 | * |
| 96 | 96 | * @since 1.0 |
| 97 | 97 | */ |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | * |
| 116 | 116 | * @param Alpha\Util\Http\Request $request |
| 117 | 117 | * |
| 118 | - * @return Alpha\Util\Http\Response |
|
| 118 | + * @return Response |
|
| 119 | 119 | * |
| 120 | 120 | * @since 1.0 |
| 121 | 121 | */ |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | * |
| 95 | 95 | * @param Alpha\Util\Http\Request $request |
| 96 | 96 | * |
| 97 | - * @return Alpha\Util\Http\Response |
|
| 97 | + * @return Response |
|
| 98 | 98 | * |
| 99 | 99 | * @since 1.0 |
| 100 | 100 | */ |
@@ -414,7 +414,7 @@ discard block |
||
| 414 | 414 | * Custom version of the check rights method that only checks for a session for the config admin username/password, |
| 415 | 415 | * when the system database is not set-up. |
| 416 | 416 | * |
| 417 | - * @return bool |
|
| 417 | + * @return boolean|null |
|
| 418 | 418 | * |
| 419 | 419 | * @since 1.0 |
| 420 | 420 | */ |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | * |
| 97 | 97 | * @param alpha\Util\Http\Request $request |
| 98 | 98 | * |
| 99 | - * @return alpha\Util\Http\Response |
|
| 99 | + * @return Response |
|
| 100 | 100 | * |
| 101 | 101 | * @since 1.0 |
| 102 | 102 | */ |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | * |
| 121 | 121 | * @param alpha\Util\Http\Request $request |
| 122 | 122 | * |
| 123 | - * @return alpha\Util\Http\Response |
|
| 123 | + * @return Response |
|
| 124 | 124 | * |
| 125 | 125 | * @since 1.0 |
| 126 | 126 | */ |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | * |
| 121 | 121 | * @param Alpha\Util\Http\Request $request |
| 122 | 122 | * |
| 123 | - * @return Alpha\Util\Http\Response |
|
| 123 | + * @return Response |
|
| 124 | 124 | * |
| 125 | 125 | * @throws Alpha\Exception\IllegalArguementException |
| 126 | 126 | * |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | * |
| 157 | 157 | * @param Alpha\Util\Http\Request $request |
| 158 | 158 | * |
| 159 | - * @return Alpha\Util\Http\Response |
|
| 159 | + * @return Response|null |
|
| 160 | 160 | * |
| 161 | 161 | * @throws Alpha\Exception\IllegalArguementException |
| 162 | 162 | * |
@@ -298,7 +298,7 @@ discard block |
||
| 298 | 298 | * |
| 299 | 299 | * @throws Alpha\Exception\ValidationException |
| 300 | 300 | * |
| 301 | - * @return Alpha\Util\Http\Response |
|
| 301 | + * @return Response|null |
|
| 302 | 302 | * |
| 303 | 303 | * @since 1.0 |
| 304 | 304 | */ |