diskfloppy.me/app/Providers/AppServiceProvider.php

22 lines
397 B
PHP
Raw Normal View History

2023-06-13 20:59:16 +00:00
<?php
namespace App\Providers;
2024-06-11 20:36:58 +00:00
use Illuminate\Support\Facades\Config;
2023-06-13 20:59:16 +00:00
use Illuminate\Support\ServiceProvider;
2024-06-11 20:36:58 +00:00
use PostHog\PostHog;
2023-06-13 20:59:16 +00:00
2024-06-11 20:36:58 +00:00
class AppServiceProvider extends ServiceProvider {
2023-06-13 20:59:16 +00:00
/**
* Register any application services.
*/
2024-06-11 20:36:58 +00:00
public function register(): void {
2023-06-13 20:59:16 +00:00
//
}
/**
* Bootstrap any application services.
*/
2024-06-19 14:15:35 +00:00
public function boot(): void {}
2023-06-13 20:59:16 +00:00
}