File "ViewExceptionWithSolution.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/spatie/laravel-ignition/src/Exceptions/ViewExceptionWithSolution.php
File size: 459 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\LaravelIgnition\Exceptions;
use Spatie\Ignition\Contracts\ProvidesSolution;
use Spatie\Ignition\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;
}
}