mautic / app /bundles /CacheBundle /Cache /CacheProviderInterface.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
raw
history blame contribute delete
323 Bytes
<?php
declare(strict_types=1);
namespace Mautic\CacheBundle\Cache;
use Symfony\Component\Cache\Adapter\TagAwareAdapterInterface;
use Symfony\Component\Cache\Psr16Cache;
interface CacheProviderInterface extends TagAwareAdapterInterface
{
/**
* @return Psr16Cache
*/
public function getSimpleCache();
}