This commit is contained in:
Zach Borboa
2023-07-07 14:27:37 -07:00
parent 661c794552
commit bb5f9b6d0c
+2 -2
View File
@@ -5,7 +5,7 @@
```php
$curl = new Curl();
$curl->get('https://www.example.com/');
$curl->diagnose(); // <-- HERE
$curl->diagnose(); // HERE
```
### Debug the entire curl instance
@@ -13,7 +13,7 @@ $curl->diagnose(); // <-- HERE
```php
$curl = new Curl();
$curl->get('https://www.example.com/');
var_dump($curl); // <-- HERE
var_dump($curl); // HERE
```
### Ensure you have the latest version of the library installed