<?php

namespace $NAMESPACE$;

use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;

class $CLASS$ extends ServiceProvider
{
    /**
     * The event handler mappings for the application.
     *
     * @var array<string, array<int, string>>
     */
    protected $listen = [];

    /**
     * Register any events for your application.
     *
     * @return void
     */
    public function boot()
    {
        // Don't run observer when
        // we run command using
        if (!app()->runningInConsole()) {
            $appType = app_type();


            if ($appType == 'saas') {
            }
        }
    }
}
