Skip to content

Commit

Permalink
Fix trailing characters in doc snippets (#63)
Browse files Browse the repository at this point in the history
It makes it's not convenient to copy/paste those
  • Loading branch information
gturri committed May 11, 2021
1 parent 3c5360d commit 49f5b49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/stubbing.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ $this->http->mock
->statusCode(Response::HTTP_NOT_FOUND)
->header('X-Custom-Header', 'Header Value')
->body('response')
->end();`
->end();
```

Additional matching methods are `queryParamExists(string $param)`, `queryParamNotExists(string $param)`,
Expand All @@ -86,7 +86,7 @@ $this->http->mock
)
->then()
->body('response')
->end();`
->end();
```

## Limiting
Expand Down

0 comments on commit 49f5b49

Please sign in to comment.