coolify/app/Providers/AppServiceProvider.php

22 lines
341 B
PHP
Raw Normal View History

2023-03-17 14:33:48 +00:00
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
2025-11-30 15:50:04 +00:00
/**
* Register any application services.
*/
public function register(): void {}
/**
* Bootstrap any application services.
*/
2023-03-17 14:33:48 +00:00
public function boot(): void
{
2025-11-30 15:50:04 +00:00
//
2023-03-17 14:33:48 +00:00
}
}