clrghouz/app/Providers/AppServiceProvider.php

29 lines
403 B
PHP
Raw Normal View History

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