Files
kulakpos_web/vendor/spatie/error-solutions/src/Contracts/ProvidesSolution.php

12 lines
206 B
PHP
Raw Normal View History

2026-03-30 14:54:57 +07:00
<?php
namespace Spatie\ErrorSolutions\Contracts;
/**
* Interface to be used on exceptions that provide their own solution.
*/
interface ProvidesSolution
{
public function getSolution(): Solution;
}