PluginProbe
SweepPress: Website Cleanup and Optimization / 2.0
SweepPress: Website Cleanup and Optimization v2.0
trunk 1.1 1.2 1.3 1.4 1.4.1 1.5 1.6 1.7 1.8 2.0 2.1 2.1.1 2.2 2.3 2.3.1 2.4 2.4.1 2.4.2 2.5 2.6 3.0 3.1 3.1.1 3.2 All 39 releases
sweeppress / core / basic / Cache.php

Cache.php in SweepPress: Website Cleanup and Optimization 2.0, at core/basic/Cache.php

24 lines 376 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Dev4Press\Plugin\SweepPress\Basic;
4
5 use Dev4Press\v39\Core\Cache\Core;
6
7 if ( ! defined( 'ABSPATH' ) ) {
8 exit;
9 }
10
11 class Cache extends Core {
12 public $store = 'sweeppress';
13
14 public static function instance() : Cache {
15 static $instance = null;
16
17 if ( is_null( $instance ) ) {
18 $instance = new Cache();
19 }
20
21 return $instance;
22 }
23 }
24