initial commit; version 22.5.12042
This commit is contained in:
60
libs/Phpfastcache8/Drivers/Sqlite/Item.php
Normal file
60
libs/Phpfastcache8/Drivers/Sqlite/Item.php
Normal file
@ -0,0 +1,60 @@
|
||||
<?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 Khoa Bui (khoaofgod) <khoaofgod@gmail.com> https://www.phpfastcache.com
|
||||
* @author Georges.L (Geolim4) <contact@geolim4.com>
|
||||
*
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Phpfastcache\Drivers\Sqlite;
|
||||
|
||||
use Phpfastcache\Core\Item\{ExtendedCacheItemInterface, ItemBaseTrait};
|
||||
use Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface;
|
||||
use Phpfastcache\Drivers\Sqlite\Driver as SqliteDriver;
|
||||
use Phpfastcache\Exceptions\{PhpfastcacheInvalidArgumentException};
|
||||
|
||||
/**
|
||||
* Class Item
|
||||
* @package phpFastCache\Drivers\Sqlite
|
||||
*/
|
||||
class Item implements ExtendedCacheItemInterface
|
||||
{
|
||||
use ItemBaseTrait {
|
||||
ItemBaseTrait::__construct as __BaseConstruct;
|
||||
}
|
||||
|
||||
/**
|
||||
* Item constructor.
|
||||
* @param Driver $driver
|
||||
* @param $key
|
||||
* @throws PhpfastcacheInvalidArgumentException
|
||||
*/
|
||||
public function __construct(SqliteDriver $driver, $key)
|
||||
{
|
||||
$this->__BaseConstruct($driver, $key);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param ExtendedCacheItemPoolInterface $driver
|
||||
* @return static
|
||||
* @throws PhpfastcacheInvalidArgumentException
|
||||
*/
|
||||
public function setDriver(ExtendedCacheItemPoolInterface $driver)
|
||||
{
|
||||
if ($driver instanceof SqliteDriver) {
|
||||
$this->driver = $driver;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
throw new PhpfastcacheInvalidArgumentException('Invalid driver instance');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user