public function Response::__clone in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-foundation/Response.php \Symfony\Component\HttpFoundation\Response::__clone()
Clones the current Response instance.
File
- vendor/
symfony/ http-foundation/ Response.php, line 247
Class
- Response
- Response represents an HTTP response.
Namespace
Symfony\Component\HttpFoundationCode
public function __clone() {
$this->headers = clone $this->headers;
}