mirror of
https://github.com/mivodev/mivo.git
synced 2026-01-27 05:52:03 +07:00
8 lines
122 B
PHP
8 lines
122 B
PHP
<?php
|
|
|
|
namespace App\Middleware;
|
|
|
|
interface MiddlewareInterface {
|
|
public function handle($request, \Closure $next);
|
|
}
|