public function Url::__clone

Clone the URL

File

drupal/core/vendor/guzzle/http/Guzzle/Http/Url.php, line 139

Class

Url
Parses and generates URLs based on URL parts. In favor of performance, URL parts are not validated.

Namespace

Guzzle\Http

Code

public function __clone() {
  $this->query = clone $this->query;
}