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