Skip to content

Commit 49f5b49

Browse files
authored
Fix trailing characters in doc snippets (#63)
It makes it's not convenient to copy/paste those
1 parent 3c5360d commit 49f5b49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/stubbing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ $this->http->mock
6060
->statusCode(Response::HTTP_NOT_FOUND)
6161
->header('X-Custom-Header', 'Header Value')
6262
->body('response')
63-
->end();`
63+
->end();
6464
```
6565

6666
Additional matching methods are `queryParamExists(string $param)`, `queryParamNotExists(string $param)`,
@@ -86,7 +86,7 @@ $this->http->mock
8686
)
8787
->then()
8888
->body('response')
89-
->end();`
89+
->end();
9090
```
9191

9292
## Limiting

0 commit comments

Comments
 (0)