<?php
namespace IlluminateRoutingControllers;
interface HasMiddleware
{
/**
* Get the middleware that should be assigned to the controller.
*
* @return array<int,IlluminateRoutingControllersMiddleware|Closure|string>
*/
public static function middleware();
}