X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FConsole%2FCommands%2FTwitchBotCommand.php;h=241a8854d9febd00c5f994f23c6e342ca7e7f260;hb=85879ea0c27ce6506919e2c083a139c470c0952c;hp=55ae34b8f7b3dc9c4534f1ba7d6f0b42a8104627;hpb=e8eb106aa5adab6dd992390cb3836589e4163e72;p=alttp.git diff --git a/app/Console/Commands/TwitchBotCommand.php b/app/Console/Commands/TwitchBotCommand.php index 55ae34b..241a885 100644 --- a/app/Console/Commands/TwitchBotCommand.php +++ b/app/Console/Commands/TwitchBotCommand.php @@ -2,7 +2,7 @@ namespace App\Console\Commands; -use App\TwitchBot\TwitchBot; +use App\TwitchBot\TwitchAppBot; use Illuminate\Console\Command; class TwitchBotCommand extends Command { @@ -27,7 +27,7 @@ class TwitchBotCommand extends Command { * @return int */ public function handle() { - $bot = new TwitchBot(); + $bot = new TwitchAppBot(); $bot->getLoop()->addSignal(SIGINT, function() use ($bot) { $bot->stop();