We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abd6518 commit 0fe05e8Copy full SHA for 0fe05e8
README.md
@@ -10,7 +10,7 @@ required [hsl-experimental](https://github.com/hhvm/hsl-experimental)
10
## Install
11
12
```bash
13
-$ hhvm $(which composer) require ytake/hack-http-server-request-handlers-interfaces
+$ hhvm $(which composer) require nazg/http-server-request-handler
14
```
15
16
## Usage
@@ -19,7 +19,7 @@ Golang style
19
20
```go
21
func middleware(next http.HandlerFunc) http.HandlerFunc {
22
- return func(w http.ResponseWriter, r *http.Request) {
+ return func(w http.ResponseWriter, r *http.Request) {
23
log.Printf("Hello World, %s", r.RequestURI)
24
next.ServeHTTP(w, r)
25
}
0 commit comments