17 lines
307 B
PHP
Executable File
17 lines
307 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Mautic\CacheBundle\Cache;
|
|
|
|
use Symfony\Component\Cache\Adapter\AdapterInterface;
|
|
use Symfony\Component\Cache\Psr16Cache;
|
|
|
|
interface CacheProviderInterface extends AdapterInterface
|
|
{
|
|
/**
|
|
* @return Psr16Cache
|
|
*/
|
|
public function getSimpleCache();
|
|
}
|