mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 10:55:00 +08:00
77 lines
1.4 KiB
PHP
77 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Manages caching of values.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\ApiClient\Helper
|
|
*/
|
|
|
|
declare( strict_types=1 );
|
|
|
|
namespace WooCommerce\PayPalCommerce\ApiClient\Helper;
|
|
|
|
/**
|
|
* Class Cache
|
|
*/
|
|
class Cache {
|
|
|
|
/**
|
|
* The prefix for the value keys.
|
|
*
|
|
* @var string
|
|
*/
|
|
private $prefix;
|
|
|
|
/**
|
|
* Cache constructor.
|
|
*
|
|
* @param string $prefix The prefix for the value keys.
|
|
*/
|
|
public function __construct( string $prefix ) {
|
|
$this->prefix = $prefix;
|
|
}
|
|
|
|
/**
|
|
* Gets a value.
|
|
*
|
|
* @param string $key The key under which the value is stored.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function get( string $key ) {
|
|
return get_transient( $this->prefix . $key );
|
|
}
|
|
|
|
/**
|
|
* Whether a value is stored or not.
|
|
*
|
|
* @param string $key The key for the value.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function has( string $key ): bool {
|
|
$value = $this->get( $key );
|
|
return false !== $value;
|
|
}
|
|
|
|
/**
|
|
* Deletes a cache.
|
|
*
|
|
* @param string $key The key.
|
|
*/
|
|
public function delete( string $key ): void {
|
|
delete_transient( $this->prefix . $key );
|
|
}
|
|
|
|
/**
|
|
* Caches a value.
|
|
*
|
|
* @param string $key The key under which the value should be cached.
|
|
* @param mixed $value The value to cache.
|
|
* @param int $expiration Time until expiration in seconds.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function set( string $key, $value, int $expiration = 0 ): bool {
|
|
return (bool) set_transient( $this->prefix . $key, $value, $expiration );
|
|
}
|
|
}
|