Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ This method uses one parameter, which is the name of the file in which the debug

// Send a GET request to http://www.foo.com/bar and log debug information in /path/to/dir/logFile.txt
$response = Curl::to('http://www.foo.com/bar')
->enableDebug('/path/to/dir/logFile.txt');
->enableDebug('/path/to/dir/logFile.txt')
->get();

```
Expand All @@ -288,7 +288,7 @@ well as the response content:

// Send a GET request to http://www.foo.com/bar and return a response object with additional information
$response = Curl::to('http://www.foo.com/bar')
->returnResponseObject();
->returnResponseObject()
->get();

$content = $response->content;
Expand Down