for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\QueueableAction;
use Illuminate\Support\ServiceProvider;
use Spatie\QueueableAction\Commands\ActionMakeCommand;
class QueueableActionServiceProvider extends ServiceProvider
{
public function register(): void
$this->app->bind('command.make:action', ActionMakeCommand::class);
$this->commands([
'command.make:action'
]);
}