Automattic\WooCommerce\Caching
ObjectCache::verify_expiration_value()
Check if the given expiration time value is valid, throw an exception if not.
Method of the class: ObjectCache{}
No Hooks.
Return
null
. Nothing (null).
Usage
// private - for code of main (parent) class only $result = $this->verify_expiration_value( $expiration ): void;
- $expiration(int) (required)
- Expiration time to check.
ObjectCache::verify_expiration_value() ObjectCache::verify expiration value code WC 9.6.0
private function verify_expiration_value( int $expiration ): void { if ( self::DEFAULT_EXPIRATION !== $expiration && ( ( $expiration < 1 ) || ( $expiration > self::MAX_EXPIRATION ) ) ) { throw new CacheException( 'Invalid expiration value, must be ObjectCache::DEFAULT_EXPIRATION or a value between 1 and ObjectCache::MAX_EXPIRATION', $this ); } }