MicroFrameWork/kernel/Middleware.php

10 lines
90 B
PHP
Raw Normal View History

2024-10-17 14:55:00 +03:00
<?php
namespace kernel;
abstract class Middleware
{
abstract function handler();
}