16 lines
313 B
PHP
Executable File
16 lines
313 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Mautic\CacheBundle\Cache;
|
|
|
|
use Symfony\Component\Cache\Adapter\AdapterInterface;
|
|
|
|
final class CacheProvider extends AbstractCacheProvider
|
|
{
|
|
public function getCacheAdapter(): AdapterInterface
|
|
{
|
|
return $this->cacheAdapterFactory('cache_adapter');
|
|
}
|
|
}
|