_sRawCacheName = $filename; parent::__construct( $location, $filename, $extension ); } /** * Needs to return the cached data anyway. * `get_transient()` returns false if the data is expired so use `get_option()`. * @return mixed */ public function load() { return get_option( '_transient_' . $this->name ); } }