discord-php / DiscordPHP

An API to interact with the popular messaging app Discord
MIT License
975 stars 236 forks source link

Adds toCommand helper function to CommandBuilder #1231

Open valzargaming opened 1 month ago

valzargaming commented 1 month ago

We've previously recommended the previous flow for creating new commands using the command builder

$discord->application->commands->save(
    $discord->application->commands->create($commandbuilder);
);

With this tweak, we can cut out an extra call to commands->create

$discord->application->commands->save($commandbuilder->toCommand($discord));