11 lines
154 B
PHP
11 lines
154 B
PHP
<?php
|
|
|
|
namespace App\Framework\ExceptionHandling;
|
|
|
|
use Throwable;
|
|
|
|
interface ExceptionHandler
|
|
{
|
|
public function handle(Throwable $throwable): void;
|
|
}
|