App\Providers\PresenterServiceProvider::boot PHP Méthode

boot() public méthode

boot
public boot ( ) : void
Résultat void
    public function boot()
    {
        if (app()->runningInConsole() === false && !request()->ajax()) {
            $this->app->booted(function () {
                $frontendHandler = app('xe.frontend');
                // set site title
                $this->loadTitle($frontendHandler);
                // load default files
                $this->loadDefaultFiles($frontendHandler);
                // icon
                $this->loadIcon($frontendHandler);
            });
        }
    }