public CacheableMetadata::setCacheMaxAge($max_age)
Sets the maximum age (in seconds).
Defaults to Cache::PERMANENT
int $max_age: The max age to associate.
$this
\InvalidArgumentException If a non-integer value is supplied.
public function setCacheMaxAge($max_age) { if (!is_int($max_age)) { throw new \InvalidArgumentException('$max_age must be an integer'); } $this->cacheMaxAge = $max_age; return $this; }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Cache!CacheableMetadata.php/function/CacheableMetadata::setCacheMaxAge/8.1.x