You are here

public function Cookie::getExpiresTime in Zircon Profile 8

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

Gets the expires time of the cookie.

Return value

string The cookie expires time

File

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

Class

Cookie
Cookie represents an HTTP cookie.

Namespace

Symfony\Component\BrowserKit

Code

public function getExpiresTime() {
  return $this->expires;
}