protected static property CookieParser::$cookieParts

Type: array Cookie part names to snake_case array values

File

drupal/core/vendor/guzzle/parser/Guzzle/Parser/Cookie/CookieParser.php, line 13

Class

CookieParser
Default Guzzle implementation of a Cookie parser

Namespace

Guzzle\Parser\Cookie

Code

protected static $cookieParts = array(
  'domain' => 'Domain',
  'path' => 'Path',
  'max_age' => 'Max-Age',
  'expires' => 'Expires',
  'version' => 'Version',
  'secure' => 'Secure',
  'port' => 'Port',
  'discard' => 'Discard',
  'comment' => 'Comment',
  'comment_url' => 'Comment-Url',
  'http_only' => 'HttpOnly',
);