Files
zibo-dashboard/vendor/spatie/error-solutions/src/Contracts/ProvidesSolution.php
T
2025-03-28 08:52:46 +01:00

12 lines
206 B
PHP

<?php
namespace Spatie\ErrorSolutions\Contracts;
/**
* Interface to be used on exceptions that provide their own solution.
*/
interface ProvidesSolution
{
public function getSolution(): Solution;
}