for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* This file is part of phpFastCache.
* @license MIT License (MIT)
* For full copyright and license information, please see the docs/CREDITS.txt file.
* @author Lucas Brucksch <[email protected]>
*/
declare(strict_types=1);
namespace Phpfastcache\Drivers\Zendshm;
use Phpfastcache\Core\Item\ExtendedCacheItemInterface;
use Phpfastcache\Core\Item\TaggableCacheItemTrait;
class Item implements ExtendedCacheItemInterface
{
use TaggableCacheItemTrait;
protected function getDriverClass(): string
return Driver::class;
}