Suggest printing instance information when troubleshooting

This commit is contained in:
Zach Borboa
2021-07-18 19:01:58 -04:00
parent 8b73ad5b35
commit 81e27c6d21
+8
View File
@@ -1,5 +1,13 @@
# Troubleshooting
### Debug the entire curl instance
```php
$curl = new Curl();
$curl->get('https://www.example.com/');
var_dump($curl); // <-- HERE
```
### Ensure you have the latest version of the library installed
```bash