Upgrade framework
This commit is contained in:
21
vendor/spatie/laravel-ignition/src/Exceptions/ViewExceptionWithSolution.php
vendored
Normal file
21
vendor/spatie/laravel-ignition/src/Exceptions/ViewExceptionWithSolution.php
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user