Classes/Cache/DecodeCache.php
<?php
declare(strict_types=1);
/*
* This file is part of the "Secure Downloads" Extension for TYPO3 CMS.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* (c) Dev <dev@Leuchtfeuer.com>, Leuchtfeuer Digital Marketing
*/
namespace Leuchtfeuer\SecureDownloads\Cache;
use Leuchtfeuer\SecureDownloads\Domain\Transfer\Token\AbstractToken;
/**
* Stores decoded JSON web token data.
*/
class DecodeCache extends AbstractCache
{
public static function getCache(string $key): AbstractToken
{
return parent::getCache($key);
}
}