*/ class NoLockStorage implements StoreInterface { /** * @inheritdoc */ public function save(Key $key) { } /** * @inheritdoc */ public function waitAndSave(Key $key) { } /** * @inheritdoc */ public function putOffExpiration(Key $key, $ttl) { } /** * @inheritdoc */ public function delete(Key $key) { } /** * @inheritdoc */ public function exists(Key $key) { return false; } }