http://www.phpfastcache.com * @author Georges.L (Geolim4) * */ namespace phpFastCache\Drivers\Mongodb; use phpFastCache\Cache\ExtendedCacheItemInterface; use phpFastCache\Cache\ExtendedCacheItemPoolInterface; use phpFastCache\Cache\ItemBaseTrait; use phpFastCache\Drivers\Mongodb\Driver as MongodbDriver; /** * Class Item * @package phpFastCache\Drivers\Apc */ class Item implements ExtendedCacheItemInterface { use ItemBaseTrait; /** * Item constructor. * @param \phpFastCache\Drivers\Mongodb\Driver $driver * @param $key * @throws \InvalidArgumentException */ public function __construct(MongodbDriver $driver, $key) { if (is_string($key)) { $this->key = $key; $this->driver = $driver; $this->driver->setItem($this); $this->expirationDate = new \DateTime(); } else { throw new \InvalidArgumentException(sprintf('$key must be a string, got type "%s" instead.', gettype($key))); } } /** * @param ExtendedCacheItemPoolInterface $driver * @throws \InvalidArgumentException * @return static */ public function setDriver(ExtendedCacheItemPoolInterface $driver) { if ($driver instanceof MongodbDriver) { $this->driver = $driver; return $this; } else { throw new \InvalidArgumentException('Invalid driver instance'); } } }