Cache\Encryption\EncryptedItemDecorator::get PHP Method

get() public method

public get ( )
    public function get()
    {
        if (!$this->isHit()) {
            return;
        }
        $item = json_decode(Crypto::decrypt($this->cacheItem->get(), $this->key), true);
        return $this->transform($item);
    }