add icatchall

This commit is contained in:
Andrew Dolgov 2023-04-09 21:30:04 +03:00
parent d7c070b22b
commit 6418157ccf
No known key found for this signature in database
GPG Key ID: 1A56B4FA25D4AF2A
1 changed files with 4 additions and 0 deletions

4
classes/icatchall.php Normal file
View File

@ -0,0 +1,4 @@
<?php
interface ICatchall {
function catchall(string $method): void;
}