9 lines
119 B
PHP
9 lines
119 B
PHP
<?php
|
|
|
|
namespace lib\Core;
|
|
|
|
interface MiddlewareInterface
|
|
{
|
|
public function handle(array $params, callable $next);
|
|
}
|