EVOLUTION-MANAGER
Edit File: CacheInterface.php
<?php namespace BotMan\BotMan\Interfaces; interface CacheInterface { /** * Determine if an item exists in the cache. * * @param string $key * @return bool */ public function has($key); /** * Retrieve an item from the cache by key. * * @param string $key * @param mixed $default * @return mixed */ public function get($key, $default = null); /** * Retrieve an item from the cache and delete it. * * @param string $key * @param mixed $default * @return mixed */ public function pull($key, $default = null); /** * Store an item in the cache. * * @param string $key * @param mixed $value * @param \DateTime|int $minutes * @return void */ public function put($key, $value, $minutes); }