You are here

public function Cookie::getRawValue in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/browser-kit/Cookie.php \Symfony\Component\BrowserKit\Cookie::getRawValue()

Gets the raw value of the cookie.

Return value

string The cookie value

File

vendor/symfony/browser-kit/Cookie.php, line 245

Class

Cookie
Cookie represents an HTTP cookie.

Namespace

Symfony\Component\BrowserKit

Code

public function getRawValue() {
  return $this->rawValue;
}