X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FConsole%2FCommands%2FTwitchBotCommand.php;h=241a8854d9febd00c5f994f23c6e342ca7e7f260;hb=fcc1fcade0bc2a8a50d7b85592fc1238c8c864a7;hp=55ae34b8f7b3dc9c4534f1ba7d6f0b42a8104627;hpb=c4835dcd53401c4e618ba077726d655d476a82c8;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();