File: D:/HostingSpaces/SBogers95/rentman.io/app/Komma/Kms/HouseKeepingServiceProvider.php
<?php
namespace App\Komma\Kms;
use App\Komma\ArtisanCommands\HouseKeeper;
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()
{
}
}