You are here

public function Cookie::getDomain in Zircon Profile 8.0

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

Returns the cookie domain

Return value

string

File

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

Class

Cookie
Class Cookie @package Zumba\GastonJS

Namespace

Zumba\GastonJS

Code

public function getDomain() {
  return $this->attributes['domain'];
}