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

File "ViewExceptionWithSolution.php"

Full Path: /var/www/laravel_filter/vendor/spatie/laravel-ignition/src/Exceptions/ViewExceptionWithSolution.php
File size: 471 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\LaravelIgnition\Exceptions;

use Spatie\ErrorSolutions\Contracts\ProvidesSolution;
use Spatie\ErrorSolutions\Contracts\Solution;

class ViewExceptionWithSolution extends ViewException implements ProvidesSolution
{
    protected Solution $solution;

    public function setSolution(Solution $solution): void
    {
        $this->solution = $solution;
    }

    public function getSolution(): Solution
    {
        return $this->solution;
    }
}