Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions src/Adapter/Common/AbstractCachePool.php
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,8 @@ public function getItems(array $keys = [])

/**
* {@inheritdoc}
*
* @return bool
*/
public function hasItem($key)
{
Expand All @@ -166,6 +168,8 @@ public function hasItem($key)

/**
* {@inheritdoc}
*
* @return bool
*/
public function clear()
{
Expand All @@ -181,6 +185,8 @@ public function clear()

/**
* {@inheritdoc}
*
* @return bool
*/
public function deleteItem($key)
{
Expand All @@ -193,6 +199,8 @@ public function deleteItem($key)

/**
* {@inheritdoc}
*
* @return bool
*/
public function deleteItems(array $keys)
{
Expand All @@ -217,6 +225,8 @@ public function deleteItems(array $keys)

/**
* {@inheritdoc}
*
* @return bool
*/
public function save(CacheItemInterface $item)
{
Expand Down Expand Up @@ -245,6 +255,8 @@ public function save(CacheItemInterface $item)

/**
* {@inheritdoc}
*
* @return bool
*/
public function saveDeferred(CacheItemInterface $item)
{
Expand All @@ -255,6 +267,8 @@ public function saveDeferred(CacheItemInterface $item)

/**
* {@inheritdoc}
*
* @return bool
*/
public function commit()
{
Expand Down Expand Up @@ -423,6 +437,8 @@ protected function getTagKey($tag)

/**
* {@inheritdoc}
*
* @return mixed
*/
public function get($key, $default = null)
{
Expand All @@ -436,6 +452,8 @@ public function get($key, $default = null)

/**
* {@inheritdoc}
*
* @return bool
*/
public function set($key, $value, $ttl = null)
{
Expand All @@ -448,6 +466,8 @@ public function set($key, $value, $ttl = null)

/**
* {@inheritdoc}
*
* @return bool
*/
public function delete($key)
{
Expand All @@ -456,6 +476,8 @@ public function delete($key)

/**
* {@inheritdoc}
*
* @return iterable
*/
public function getMultiple($keys, $default = null)
{
Expand Down Expand Up @@ -494,6 +516,8 @@ private function generateValues($default, $items)

/**
* {@inheritdoc}
*
* @return bool
*/
public function setMultiple($values, $ttl = null)
{
Expand Down Expand Up @@ -533,6 +557,8 @@ public function setMultiple($values, $ttl = null)

/**
* {@inheritdoc}
*
* @return bool
*/
public function deleteMultiple($keys)
{
Expand All @@ -551,6 +577,8 @@ public function deleteMultiple($keys)

/**
* {@inheritdoc}
*
* @return bool
*/
public function has($key)
{
Expand Down