Ouzo\Utilities\Cache::contains PHP Méthode

contains() public static méthode

Checks if cache contains an object for the given key.
public static contains ( $key ) : boolean
$key
Résultat boolean
    public static function contains($key)
    {
        return array_key_exists($key, self::$_cache);
    }