status = CacheStatus::ACTIVE; } /** * {@inheritdoc} */ public function set($key, $value, int $expire = -1) : void { // TODO: Implement set() method. } /** * {@inheritdoc} */ public function add($key, $value, int $expire = -1) : bool { // TODO: Implement add() method. } /** * {@inheritdoc} */ public function get($key, int $expire = -1) { // TODO: Implement get() method. } /** * {@inheritdoc} */ public function delete($key, int $expire = -1) : bool { // TODO: Implement delete() method. } /** * {@inheritdoc} */ public function flush(int $expire = 0) : bool { // TODO: Implement flush() method. return true; } /** * {@inheritdoc} */ public function flushAll() : bool { // TODO: Implement flush() method. return true; } /** * {@inheritdoc} */ public function replace($key, $value, int $expire = -1) : bool { // TODO: Implement replace() method. } /** * {@inheritdoc} */ public function stats() : array { // TODO: Implement stats() method. } /** * {@inheritdoc} */ public function getThreshold() : int { // TODO: Implement getThreshold() method. } /** * {@inheritdoc} */ public function setStatus(int $status) : void { // TODO: Implement setStatus() method. } }