StaticVariable.php
753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
namespace WPML\TM\ATE\API\CacheStorage;
use WPML\FP\Obj;
class StaticVariable implements Storage {
/** @var array */
private static $cache = [];
/** @var self */
private static $instance;
public static function getInstance() {
if ( ! self::$instance ) {
self::$instance = new self();
}
return self::$instance;
}
/**
* @param string $key
* @param mixed $default
*
* @return mixed
*/
public function get( $key, $default = null ) {
return Obj::propOr( $default, $key, self::$cache );
}
/**
* @param string $key
* @param mixed $value
*/
public function save( $key, $value ) {
self::$cache[ $key ] = $value;
}
/**
* @param string $key
*/
public function delete( $key ) {
self::$cache = [];
}
}