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