@@ -292,7 +292,7 @@ |
||
| 292 | 292 | * Parse the hex ServerVersion value and return a valid |
| 293 | 293 | * Client::VERSION_* constant. |
| 294 | 294 | * |
| 295 | - * @return string|boolean A known version constant, or FALSE if it could not |
|
| 295 | + * @return string|false A known version constant, or FALSE if it could not |
|
| 296 | 296 | * be determined. |
| 297 | 297 | * |
| 298 | 298 | * @link http://msdn.microsoft.com/en-us/library/bb204122(v=exchg.140).aspx |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | // If there is an override for this class, rename the base name to |
| 36 | 36 | // match. |
| 37 | 37 | $classname = $basename = basename($file, '.php'); |
| 38 | - if (isset($overrides["$namespace\\\\$basename"])) { |
|
| 38 | + if (isset($overrides["$namespace\\\\$basename"])) { |
|
| 39 | 39 | $basename = $overrides["$namespace\\\\$basename"]; |
| 40 | 40 | } |
| 41 | 41 | |
@@ -77,7 +77,7 @@ |
||
| 77 | 77 | $this->__last_request_headers = $headers; |
| 78 | 78 | |
| 79 | 79 | // Only reinitialize curl handle if the location is different. |
| 80 | - if(!$this->ch || curl_getinfo($this->ch, CURLINFO_EFFECTIVE_URL) != $location) { |
|
| 80 | + if (!$this->ch || curl_getinfo($this->ch, CURLINFO_EFFECTIVE_URL) != $location) { |
|
| 81 | 81 | $this->ch = curl_init($location); |
| 82 | 82 | } |
| 83 | 83 | |