oh my god....

This commit is contained in:
Roscoe 2025-07-03 22:25:42 +01:00
commit 376a696c8d
Signed by: RoscoeDaWah
SSH key fingerprint: SHA256:Hqn452XQ1ETzUt/FthJu6+OFkS4NBxCv5VQSEvuk7CE
6 changed files with 399 additions and 1 deletions

View file

@ -0,0 +1,20 @@
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class HelperServiceProvider extends ServiceProvider
{
/**
* Register services.
*/
public function register(): void {
require_once app_path('Helpers/LegacyHelper.php');
}
/**
* Bootstrap services.
*/
public function boot(): void {}
}