10 lines
226 B
PHP
10 lines
226 B
PHP
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
/**
|
|
* Marker interface for exceptions that should trigger admin notification.
|
|
* Implement this interface on custom exceptions that require admin attention.
|
|
*/
|
|
interface ShouldNotifyAdmin {}
|