%PDF- %PDF-
| Direktori : /www/varak.net/paste.varak.net-5.6/vendor/laravel/framework/src/Illuminate/Http/ |
| Current File : //www/varak.net/paste.varak.net-5.6/vendor/laravel/framework/src/Illuminate/Http/ResponseTrait.php |
<?php namespace Illuminate\Http;
use Symfony\Component\HttpFoundation\Cookie;
trait ResponseTrait {
/**
* Set a header on the Response.
*
* @param string $key
* @param string $value
* @param bool $replace
* @return $this
*/
public function header($key, $value, $replace = true)
{
$this->headers->set($key, $value, $replace);
return $this;
}
/**
* Add a cookie to the response.
*
* @param \Symfony\Component\HttpFoundation\Cookie $cookie
* @return $this
*/
public function withCookie(Cookie $cookie)
{
$this->headers->setCookie($cookie);
return $this;
}
}