Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
amouhzi committed Nov 15, 2018
1 parent e0dc0a8 commit c7392e1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Curl/Curl.php
Original file line number Diff line number Diff line change
Expand Up @@ -643,23 +643,23 @@ public function isServerError()

/**
* Get a specific response header key or all values from the response headers array.
*
*
* Usage example:
*
*
* ```php
* $curl = (new Curl())->get('http://example.com');
*
*
* echo $curl->getResponseHeaders('Content-Type');
* ```
*
*
* Or in order to dump all keys with the given values use:
*
*
* ```php
* $curl = (new Curl())->get('http://example.com');
*
*
* var_dump($curl->getResponseHeaders());
* ```
*
*
* @param string $headerKey Optional key to get from the array.
* @return bool|string
* @since 1.9
Expand Down

0 comments on commit c7392e1

Please sign in to comment.