diff --git a/http-client.md b/http-client.md index 5b6c070a26..5610ad4888 100644 --- a/http-client.md +++ b/http-client.md @@ -600,7 +600,7 @@ $response = Http::post(/* ... */); #### Faking Specific URLs -Alternatively, you may pass an array to the `fake` method. The array's keys should represent URL patterns that you wish to fake and their associated responses. The `*` character may be used as a wildcard character. Any requests made to URLs that have not been faked will actually be executed. You may use the `Http` facade's `response` method to construct stub / fake responses for these endpoints: +Alternatively, you may pass an array to the `fake` method. The array's keys should represent URL patterns that you wish to fake and their associated responses. The `*` character may be used as a wildcard character. You may use the `Http` facade's `response` method to construct stub / fake responses for these endpoints: ```php Http::fake([ @@ -612,7 +612,7 @@ Http::fake([ ]); ``` -If you would like to specify a fallback URL pattern that will stub all unmatched URLs, you may use a single `*` character: +Any requests made to URLs that have not been faked will actually be executed. If you would like to specify a fallback URL pattern that will stub all unmatched URLs, you may use a single `*` character: ```php Http::fake([