mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-22 08:05:34 +08:00
15 lines
167 B
PHP
15 lines
167 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ZM\Http;
|
|
|
|
use ZM\Annotation\Http\Middleware;
|
|
|
|
/**
|
|
* @property Middleware $middleware
|
|
*/
|
|
interface MiddlewareInterface
|
|
{
|
|
}
|