cattr-app/server-application

View on GitHub
app/Exceptions/Interfaces/TypedException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Exceptions\Interfaces;

use Throwable;

/**
 * Interface TypedException
 */
interface TypedException extends Throwable
{
    /**
     * @return string
     */
    public function getType(): string;
}