for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace FondBot;
use Illuminate\Support\ServiceProvider;
abstract class FondBotApplicationServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot(): void
$this->intents();
}
* Register intents.
abstract protected function intents(): void;