for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\QueueableAction;
use Illuminate\Support\ServiceProvider;
class QueueableActionServiceProvider extends ServiceProvider
{
public function register(): void
if ($this->app->runningInConsole()) {
$this->commands([
ActionMakeCommand::class,
]);
}
public function provides(): array
return [
];