igfs/kernel/Middleware.php

10 lines
90 B
PHP
Raw Normal View History

2024-10-23 16:16:47 +03:00
<?php
namespace kernel;
abstract class Middleware
{
abstract function handler();
}