3 namespace App\Console\Commands;
5 use App\TwitchBot\TwitchAppBot;
6 use Illuminate\Console\Command;
8 class TwitchBotCommand extends Command {
11 * The name and signature of the console command.
15 protected $signature = 'twitch:bot';
18 * The console command description.
22 protected $description = 'Runs the twitch bot';
25 * Execute the console command.
29 public function handle() {
30 $bot = new TwitchAppBot();
32 $bot->getLoop()->addSignal(SIGINT, function() use ($bot) {