File: D:/HostingSpaces/stafa/stafa.nl/app/Komma/Kms/Core/HouseKeeping/HouseKeepingServiceProvider.php
<?php
namespace App\Komma\Kms\Core\HouseKeeping;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
class HouseKeepingServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
{
parent::boot();
$this->registerCommands();
}
/**
* Register artisan shop commands
*/
public function registerCommands()
{
$this->commands([
HouseKeeper::class
]);
}
/**
* Register the application services.
*
* @return void
*/
public function register()
{
}
}