function CacheItemPoolInterface::deleteItems
Removes multiple items from the pool.
Parameters
string[] $keys: An array of keys that should be removed from the pool.
Return value
bool True if the items were successfully removed. False if there was an error.
Throws
InvalidArgumentException If any of the keys in $keys are not a legal value a \Psr\Cache\InvalidArgumentException MUST be thrown.
File
-
vendor/
psr/ cache/ src/ CacheItemPoolInterface.php, line 107
Class
- CacheItemPoolInterface
- CacheItemPoolInterface generates CacheItemInterface objects.
Namespace
Psr\CacheCode
public function deleteItems(array $keys) : bool;