laravel/app/Providers/AppServiceProvider.php

25 lines
361 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Providers;
2014-11-05 10:18:53 -06:00
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
2014-11-05 10:18:53 -06:00
/**
* Bootstrap any application services.
*/
public function boot(): void
{
//
}
2014-11-05 10:18:53 -06:00
}