EVOLUTION-MANAGER
Edit File: ProvidesStorage.php
<?php namespace BotMan\BotMan\Traits; use BotMan\BotMan\Storages\Storage; trait ProvidesStorage { /** * @return Storage */ public function userStorage() { return (new Storage($this->storage)) ->setPrefix('user_') ->setDefaultKey($this->getMessage()->getSender()); } /** * @return Storage */ public function channelStorage() { return (new Storage($this->storage)) ->setPrefix('channel_') ->setDefaultKey($this->getMessage()->getRecipient()); } /** * @return Storage */ public function driverStorage() { return (new Storage($this->storage)) ->setPrefix('driver_') ->setDefaultKey($this->getDriver()->getName()); } }