%PDF- %PDF-
Direktori : /home/graphicd/www/vebto/vendor/algolia/algoliasearch-client-php/src/Cache/ |
Current File : /home/graphicd/www/vebto/vendor/algolia/algoliasearch-client-php/src/Cache/NullCacheDriver.php |
<?php namespace Algolia\AlgoliaSearch\Cache; use Psr\SimpleCache\CacheInterface; final class NullCacheDriver implements CacheInterface { /** * {@inheritdoc} */ public function get($key, $default = null) { return $default; } /** * {@inheritdoc} */ public function set($key, $value, $ttl = null) { return true; } /** * {@inheritdoc} */ public function delete($key) { return true; } /** * {@inheritdoc} */ public function clear() { return true; } /** * {@inheritdoc} */ public function getMultiple($keys, $default = null) { $return = []; foreach ($keys as $key) { $return[$key] = $default; } return $return; } /** * {@inheritdoc} */ public function setMultiple($values, $ttl = null) { return true; } /** * {@inheritdoc} */ public function deleteMultiple($keys) { return true; } /** * {@inheritdoc} */ public function has($key) { return false; } }