Skip to content

Commit 410318c

Browse files
author
Matthias Jacobi
committed
corrected YourGetRequestHandler to YourPostRequestHandler and ProvidesReadRequestData to ProvidesWriteRequestData
1 parent e711693 commit 410318c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Contents/docs/icehawk/request-input-data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,9 @@ This object carries the [request information](@baseUrl@/docs/icehawk/request-inf
167167
This example shows how you can access the request input data inside a POST(/PUT/PATCH/DELETE) request handler:
168168

169169
```php
170-
class YourGetRequestHandler implements HandlesGetRequest
170+
class YourPostRequestHandler implements HandlesPostRequest
171171
{
172-
public function handle( ProvidesReadRequestData $request )
172+
public function handle( ProvidesWriteRequestData $request )
173173
{
174174
# Get the request input data
175175
$requestInput = $request->getInput();

0 commit comments

Comments
 (0)