NinjaMutex\Tests\Mock\MockPredisClient::del PHP 메소드

del() 공개 메소드

public del ( string $key ) : boolean
$key string
리턴 boolean
    public function del($key)
    {
        if (!$this->available) {
            return false;
        }
        unset(self::$data[$key]);
        return true;
    }