laravel-workkit/src/WorkkitServiceProvider.php

33 lines
557 B
PHP
Raw Normal View History

2025-11-20 14:53:34 +00:00
<?php
namespace Blax\Workkit;
2026-04-15 08:10:41 +00:00
use Blax\Workkit\Commands\PlugNPrayCommand;
2025-11-20 14:53:34 +00:00
class WorkkitServiceProvider extends \Illuminate\Support\ServiceProvider
{
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap the application events.
*
* @return void
*/
public function boot()
{
2026-04-15 08:10:41 +00:00
if ($this->app->runningInConsole()) {
$this->commands([
PlugNPrayCommand::class,
]);
}
2025-11-20 14:53:34 +00:00
}
}