This commit is contained in:
Ahmad Nassri
2015-01-15 01:47:58 -05:00
parent 8dcb11e0a6
commit 90be29ced4

View File

@@ -136,7 +136,7 @@ Unirest\Request::delete($url, $headers = array(), $body = null, $username = null
You can send a request with any [standard](http://www.iana.org/assignments/http-methods/http-methods.xhtml) or custom HTTP Method: You can send a request with any [standard](http://www.iana.org/assignments/http-methods/http-methods.xhtml) or custom HTTP Method:
```php ```php
Unirest\Request::send(Unirest\Methods::LINK, $url, $headers = array(), $body); Unirest\Request::send(Unirest\Method::LINK, $url, $headers = array(), $body);
Unirest\Request::send('CHECKOUT', $url, $headers = array(), $body); Unirest\Request::send('CHECKOUT', $url, $headers = array(), $body);
``` ```