summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-04-09 21:30:04 +0300
committerAndrew Dolgov <[email protected]>2023-04-09 21:30:04 +0300
commit6418157ccf4034e191f15e36d141e7703bbc88b0 (patch)
tree0a3017b438ec834d9c196913a90003f847a69833 /classes
parentd7c070b22bc187db45b20937a85fbf01d652ee7c (diff)
add icatchall
Diffstat (limited to 'classes')
-rw-r--r--classes/icatchall.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/classes/icatchall.php b/classes/icatchall.php
new file mode 100644
index 000000000..29954d35a
--- /dev/null
+++ b/classes/icatchall.php
@@ -0,0 +1,4 @@
+<?php
+interface ICatchall {
+ function catchall(string $method): void;
+}