@@ -60,37 +60,36 @@ discard block |
||
| 60 | 60 | /** |
| 61 | 61 | * Handles GET HTTP requests. |
| 62 | 62 | * |
| 63 | - * @param Alpha\Util\Http\Request $request |
|
| 64 | 63 | * |
| 65 | 64 | * @since Alpha\Util\Http\Response |
| 66 | 65 | * @since 1.0 |
| 66 | + * @return \Alpha\Util\Http\Response|null |
|
| 67 | 67 | */ |
| 68 | 68 | public function doGET($params); |
| 69 | 69 | |
| 70 | 70 | /** |
| 71 | 71 | * Handles POST HTTP requests. |
| 72 | 72 | * |
| 73 | - * @param Alpha\Util\Http\Request $request |
|
| 74 | 73 | * |
| 75 | 74 | * @since Alpha\Util\Http\Response |
| 76 | 75 | * @since 1.0 |
| 76 | + * @return \Alpha\Util\Http\Response|null |
|
| 77 | 77 | */ |
| 78 | 78 | public function doPOST($params); |
| 79 | 79 | |
| 80 | 80 | /** |
| 81 | 81 | * Handles PUT HTTP requests. |
| 82 | 82 | * |
| 83 | - * @param Alpha\Util\Http\Request $request |
|
| 84 | 83 | * |
| 85 | 84 | * @since Alpha\Util\Http\Response |
| 86 | 85 | * @since 1.0 |
| 86 | + * @return \Alpha\Util\Http\Response |
|
| 87 | 87 | */ |
| 88 | 88 | public function doPUT($params); |
| 89 | 89 | |
| 90 | 90 | /** |
| 91 | 91 | * Handles PATCH HTTP requests. |
| 92 | 92 | * |
| 93 | - * @param Alpha\Util\Http\Request $request |
|
| 94 | 93 | * |
| 95 | 94 | * @since Alpha\Util\Http\Response |
| 96 | 95 | * @since 1.0 |
@@ -100,30 +99,30 @@ discard block |
||
| 100 | 99 | /** |
| 101 | 100 | * Handles DELETE HTTP requests. |
| 102 | 101 | * |
| 103 | - * @param Alpha\Util\Http\Request $request |
|
| 104 | 102 | * |
| 105 | 103 | * @since Alpha\Util\Http\Response |
| 106 | 104 | * @since 1.0 |
| 105 | + * @return \Alpha\Util\Http\Response |
|
| 107 | 106 | */ |
| 108 | 107 | public function doDELETE($params); |
| 109 | 108 | |
| 110 | 109 | /** |
| 111 | 110 | * Handles OPTIONS HTTP requests. |
| 112 | 111 | * |
| 113 | - * @param Alpha\Util\Http\Request $request |
|
| 114 | 112 | * |
| 115 | 113 | * @since Alpha\Util\Http\Response |
| 116 | 114 | * @since 1.0 |
| 115 | + * @return \Alpha\Util\Http\Response |
|
| 117 | 116 | */ |
| 118 | 117 | public function doOPTIONS($params); |
| 119 | 118 | |
| 120 | 119 | /** |
| 121 | 120 | * Handles TRACE HTTP requests. |
| 122 | 121 | * |
| 123 | - * @param Alpha\Util\Http\Request $request |
|
| 124 | 122 | * |
| 125 | 123 | * @since Alpha\Util\Http\Response |
| 126 | 124 | * @since 2.0.2 |
| 125 | + * @return \Alpha\Util\Http\Response |
|
| 127 | 126 | */ |
| 128 | 127 | public function doTRACE($params); |
| 129 | 128 | } |