Skip to content

Commit e711693

Browse files
author
Matthias Jacobi
committed
corrected intantiate to instantiate and ProvidesReadRequestData to ProvidesWriteRequestData
1 parent 7070b46 commit e711693

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Contents/docs/icehawk/request-information.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ As you can see you can inject any array into the constructor of the class. This
134134

135135
<hr class="blockspace">
136136

137-
## Where to intantiate the object?
137+
## Where to instantiate the object?
138138

139139
As shown in the [configuration section](@baseUrl@/docs/icehawk/configuration.html) you need to provide an instance of the `RequestInfo` class
140140
(or an implementation of the `ProvidesRequestInfo` interface) once in the `getRequestInfo()` method. IceHawk will then inject it to all subsequent objects.
@@ -175,7 +175,7 @@ Every IceHawk request handler, regardless of read or write side, needs to implem
175175
public function handle( ProvidesReadRequestData $request );
176176

177177
# Write side
178-
public function handle( ProvidesReadRequestData $request );
178+
public function handle( ProvidesWriteRequestData $request );
179179
```
180180

181181
These methods are defined by the two base interfaces for request handlers:

0 commit comments

Comments
 (0)