clrghouz/app/Providers/AppServiceProvider.php

29 lines
403 B
PHP
Raw Normal View History

2018-11-15 21:45:49 +11:00
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
2021-05-03 22:53:40 +10:00
* Register any application services.
2018-11-15 21:45:49 +11:00
*
* @return void
*/
2021-05-03 22:53:40 +10:00
public function register()
2018-11-15 21:45:49 +11:00
{
//
}
/**
2021-05-03 22:53:40 +10:00
* Bootstrap any application services.
2018-11-15 21:45:49 +11:00
*
* @return void
*/
2021-05-03 22:53:40 +10:00
public function boot()
2018-11-15 21:45:49 +11:00
{
//
}
}