taktik-laravel-pohovor/app/Providers/AppServiceProvider.php
2025-01-23 00:45:59 +01:00

27 lines
387 B
PHP

<?php
declare(strict_types=1);
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
//
}
}