You are here

public function Cookie::getValue in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/http-foundation/Cookie.php \Symfony\Component\HttpFoundation\Cookie::getValue()
  2. 8 vendor/symfony/browser-kit/Cookie.php \Symfony\Component\BrowserKit\Cookie::getValue()
  3. 8 vendor/jcalderonzumba/gastonjs/src/Cookie.php \Zumba\GastonJS\Cookie::getValue()
Same name and namespace in other branches
  1. 8.0 vendor/jcalderonzumba/gastonjs/src/Cookie.php \Zumba\GastonJS\Cookie::getValue()

Returns the cookie value

Return value

string

File

vendor/jcalderonzumba/gastonjs/src/Cookie.php, line 32

Class

Cookie
Class Cookie @package Zumba\GastonJS

Namespace

Zumba\GastonJS

Code

public function getValue() {
  return urldecode($this->attributes['value']);
}