for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace FondBot\Console;
use Illuminate\Support\ServiceProvider;
class ToolbeltServiceProvider extends ServiceProvider
{
/**
* Define toolbelt commands.
*/
public function boot(): void
if ($this->app->runningInConsole()) {
$this->commands([
MakeIntentCommand::class,
MakeInteractionCommand::class,
MakeActivatorCommand::class,
ListDriversCommand::class,
InstallDriverCommand::class,
ListChannelsCommand::class,
ListIntentsCommand::class,
]);
}