public function SetCookie::setPath in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php \GuzzleHttp\Cookie\SetCookie::setPath()
Set the path of the cookie
Parameters
string $path Path of the cookie:
File
- vendor/
guzzlehttp/ guzzle/ src/ Cookie/ SetCookie.php, line 181
Class
- SetCookie
- Set-Cookie object
Namespace
GuzzleHttp\CookieCode
public function setPath($path) {
$this->data['Path'] = $path;
}