GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 52bff1...783525 )
by Askupa
02:16
created

cache.php (2 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
/**
3
 * @package   WordPress Dynamic CSS
4
 * @version   1.0.5
5
 * @author    Askupa Software <[email protected]>
6
 * @link      https://github.com/askupasoftware/wp-dynamic-css
7
 * @copyright 2016 Askupa Software
8
 */
9
10
/**
11
 * Dynamic CSS Cache Handler
12
 */
13
class DynamicCSSCache
14
{
15
    /**
16
     * @var Singleton The reference to *Singleton* instance of this class
17
     */
18
    private static $instance;
19
    
20
    /**
21
     * @var array The reference to the cached compiled CSS that is stored in the database 
22
     */
23
    private static $cache;
24
    
25
    /**
26
     * Returns the *Singleton* instance of this class.
27
     *
28
     * @return Singleton The *Singleton* instance.
29
     */
30
    public static function get_instance()
31
    {
32
        if (null === static::$instance) 
33
        {
34
            static::$instance = new static();
0 ignored issues
show
Documentation Bug introduced by
It seems like new static() of type this<DynamicCSSCache> is incompatible with the declared type object<Singleton> of property $instance.

Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.

Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..

Loading history...
35
            self::load_cache();
36
        }
37
        return static::$instance;
0 ignored issues
show
Bug Compatibility introduced by
The expression static::$instance; of type DynamicCSSCache|Singleton adds the type DynamicCSSCache to the return on line 37 which is incompatible with the return type documented by DynamicCSSCache::get_instance of type Singleton.
Loading history...
38
    }
39
    
40
    /**
41
     * Returns the compiled CSS for the given handle if it exists in the cache.
42
     * Returns false otherwise.
43
     * 
44
     * @param string $handle The handle of the stylesheet
45
     * @return boolean|string
46
     */
47
    public function get( $handle )
48
    {
49
        if( array_key_exists( $handle, self::$cache ) )
50
        {
51
            return self::$cache[$handle];
52
        }
53
        return false;
54
    }
55
    
56
    /**
57
     * Update the compiled CSS for the given handle.
58
     * 
59
     * @param string $handle The handle of the stylesheet
60
     * @param type $compiled_css
61
     */
62
    public function update( $handle, $compiled_css )
63
    {
64
        self::$cache[$handle] = $compiled_css;
65
        $this->update_option();
66
    }
67
    
68
    /**
69
     * Clear the compiled CSS from cache for the given handle.
70
     * 
71
     * @param string $handle The handle of the stylesheet
72
     */
73
    public function clear( $handle )
74
    {
75
        unset(self::$cache[$handle]);
76
        $this->update_option();
77
    }
78
    
79
    /**
80
     * Load the cache value from the database or create an empty array if the
81
     * cache is empty.
82
     */
83
    private static function load_cache()
84
    {
85
        self::$cache = get_option('wp-dynamic-css-cache');
86
        
87
        if( false === self::$cache )
88
        {
89
            self::$cache = array();
90
        }
91
    }
92
    
93
    /**
94
     * Update the database option with the local cache value.
95
     */
96
    private function update_option()
97
    {
98
        update_option('wp-dynamic-css-cache', self::$cache);
99
    }
100
}