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