redirect/app/Providers/AppServiceProvider.php

30 lines
463 B
PHP
Raw Normal View History

<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
2022-10-13 11:41:38 +00:00
use App\Traits\SingleOrFail;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
2022-10-13 11:41:38 +00:00
SingleOrFail::bootSingleOrfail();
}
2022-10-13 11:41:38 +00:00
}