PortIO/app/Providers/AppServiceProvider.php

25 lines
400 B
PHP
Raw Permalink Normal View History

2023-03-14 14:33:06 +00:00
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
2023-05-14 07:42:18 +00:00
require_once app_path() . '/Helpers.php';
2023-03-14 14:33:06 +00:00
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
//
}
}