1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-25 15:58:56 +01:00
openstamanager/app/Providers/AppServiceProvider.php

25 lines
361 B
PHP
Raw Normal View History

2021-07-30 19:26:02 +02:00
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
2021-07-30 19:26:02 +02:00
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
2021-07-30 19:26:02 +02:00
{
//
}
}