JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "CompilerEngineForIgnition.php"

Full Path: /var/www/lionsclub/core/vendor/livewire/livewire/src/CompilerEngineForIgnition.php
File size: 595 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Livewire;

use Illuminate\View\Engines\PhpEngine;
use Facade\Ignition\Views\Engines\CompilerEngine;
use Livewire\ComponentConcerns\RendersLivewireComponents;
use Throwable;

class CompilerEngineForIgnition extends CompilerEngine
{
    use RendersLivewireComponents;

    protected function handleViewException(Throwable $e, $obLevel)
    {
        if ($this->shouldBypassExceptionForLivewire($e, $obLevel)) {
            (new PhpEngine($this->files))->handleViewException($e, $obLevel);

            return;
        }

        parent::handleViewException($e, $obLevel);
    }
}