Since HydePHP is based on Laravel, we have access to many amazing features, like Service Providers. If you don't know what these are, you probably don't need them.
<?php

namespace App\Providers;

use Illuminate\Support\ServiceProvider;

/**
 * This file exists in default installs to give a convenient starting point for you to
 * customize the framework internals. You can learn about providers in the Laravel docs:
 * @see https://laravel.com/docs/9.x/providers
 */
class AppServiceProvider extends ServiceProvider
{
    /**
     * Register any application services.
     *
     * @return void
     */
    public function register()
    {
        //
    }

    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot()
    {
        //
    }
}