public function Cookie::getValue

Gets the value of the cookie.

@api

Return value

string

1 call to Cookie::getValue()
Cookie::__toString in drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Cookie.php
Returns the cookie as a string.

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Cookie.php, line 134

Class

Cookie
Represents a cookie

Namespace

Symfony\Component\HttpFoundation

Code

public function getValue() {
  return $this->value;
}