Exemplo n.º 1
1
 /**
  * Execute the console command.
  *
  * @return mixed
  */
 public function fire(Userbot $userbot)
 {
     foreach (config('slack.channels-to-manage') as $channelId) {
         $channel = Channel::findBySlackId($channelId);
         $userbot->manageChannel($channel);
     }
 }