# sweeppress/2.2/core/basic/Cache.php

SweepPress: Website Cleanup and Optimization, version 2.2. 24 lines.

- Page: https://pluginprobe.com/plugins/sweeppress/2.2/code/core/basic/Cache.php
- Raw: https://pluginprobe.com/plugins/sweeppress/2.2/raw/core/basic/Cache.php
- Modified: 2023-05-15T11:18:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/sweeppress/2.2/code/core/basic/Cache.php#L10-L20`.

```php
<?php

namespace Dev4Press\Plugin\SweepPress\Basic;

use Dev4Press\v41\Core\Cache\Core;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

class Cache extends Core {
	public $store = 'sweeppress';

	public static function instance() : Cache {
		static $instance = null;

		if ( is_null( $instance ) ) {
			$instance = new Cache();
		}

		return $instance;
	}
}

```
