Skip to content

Commit 2165e68

Browse files
nadaramouhzi
authored andcommitted
typo in boolean, use bool for consistence (#49)
* typo in boolean, use bool for consistence
1 parent 958363d commit 2165e68

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Curl/Curl.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class Curl
9393
public $error_message = null;
9494

9595
/**
96-
* @var booelan Whether an error occured or not
96+
* @var bool Whether an error occured or not
9797
*/
9898
public $curl_error = false;
9999

@@ -108,7 +108,7 @@ class Curl
108108
public $curl_error_message = null;
109109

110110
/**
111-
* @var booelan Whether an error occured or not
111+
* @var bool Whether an error occured or not
112112
*/
113113
public $http_error = false;
114114

@@ -660,7 +660,7 @@ public function isServerError()
660660
* ```
661661
*
662662
* @param string $headerKey Optional key to get from the array.
663-
* @return boolean|string
663+
* @return bool|string
664664
* @since 1.9
665665
*/
666666
public function getResponseHeaders($headerKey = null)

0 commit comments

Comments
 (0)