You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @method ExtendedCacheItemInterface getItem(string $key) Retrieve an item and returns an empty item if not found
28
+
* @method ExtendedCacheItemInterface[] getItems(string[] $keys) Retrieve an item and returns an empty item if not found
29
+
* @method bool hasItem(string $key) Tests if an item exists
30
+
* @method static string getConfigClass()
31
+
* @method ConfigurationOption getItemClass()
32
+
* @method ConfigurationOption getConfig()
33
+
* @method ConfigurationOption getDefaultConfig()
34
+
* @method string getDriverName()
35
+
* @method string getInstanceId()
36
+
* @method bool deleteItem(string $key) Delete an item
37
+
* @method bool deleteItems(string[] $keys) Delete some items
38
+
* @method bool save(CacheItemInterface $item) Save an item
39
+
* @method bool saveMultiple(CacheItemInterface ...$items) Save multiple items
40
+
* @method bool saveDeferred(CacheItemInterface $item) Sets a cache item to be persisted later
41
+
* @method bool commit() Persists any deferred cache items
42
+
* @method bool clear() Allow you to completely empty the cache and restart from the beginning
43
+
* @method DriverStatistic getStats() Returns a DriverStatistic object
44
+
* @method string getHelp() Returns help about a driver, if available
45
+
* @method ExtendedCacheItemInterface getItemsByTag(string $tagName, int $strategy = TaggableCacheItemPoolInterface::TAG_STRATEGY_ONE) Return items by a tag
46
+
* @method ExtendedCacheItemInterface[] getItemsByTags(string[] $tagNames, int $strategy = TaggableCacheItemPoolInterface::TAG_STRATEGY_ONE) Return items by some tags
47
+
* @method bool deleteItemsByTag(string $tagName, int $strategy = TaggableCacheItemPoolInterface::TAG_STRATEGY_ONE) Delete items by a tag
48
+
* @method bool deleteItemsByTags(string[] $tagNames, int $strategy = TaggableCacheItemPoolInterface::TAG_STRATEGY_ONE) // Delete items by some tags
49
+
* @method void incrementItemsByTag(string $tagName, int $step = 1, int $strategy = TaggableCacheItemPoolInterface::TAG_STRATEGY_ONE) // Increment items by a tag
50
+
* @method void incrementItemsByTags(string[] $tagNames, int $step = 1, int $strategy = TaggableCacheItemPoolInterface::TAG_STRATEGY_ONE) // Increment items by some tags
51
+
* @method void decrementItemsByTag(string $tagName, int $step = 1, int $strategy = TaggableCacheItemPoolInterface::TAG_STRATEGY_ONE) // Decrement items by a tag
52
+
* @method void decrementItemsByTags(string[] $tagNames, int $step = 1, int $strategy = TaggableCacheItemPoolInterface::TAG_STRATEGY_ONE) // Decrement items by some tags
53
+
* @method void appendItemsByTag(string $tagName, mixed $data, int $strategy = TaggableCacheItemPoolInterface::TAG_STRATEGY_ONE) // Append items by a tag
54
+
* @method void appendItemsByTags(string[] $tagNames, mixed $data, int $strategy = TaggableCacheItemPoolInterface::TAG_STRATEGY_ONE) // Append items by a tags
55
+
* @method void prependItemsByTag(string $tagName, mixed $data, int $strategy = TaggableCacheItemPoolInterface::TAG_STRATEGY_ONE) // Prepend items by a tag
56
+
* @method void prependItemsByTags(string[] $tagNames, mixed $data, int $strategy = TaggableCacheItemPoolInterface::TAG_STRATEGY_ONE) // Prepend items by a tags
57
+
* @method string getItemsAsJsonString(string[] $tagNames, int $option, int $depth, int $strategy = TaggableCacheItemPoolInterface::TAG_STRATEGY_ONE)
$testHelper->assertFail('$driverInstance->getItem() returned an invalid class that does not implements ExtendedCacheItemInterface: ' . get_class($driverInstance));
53
-
} else {
54
-
$testHelper->assertPass('$driverInstance->getItem() returned a valid class that implements ExtendedCacheItemInterface: ' . get_class($driverInstance));
0 commit comments