mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-12 11:11:31 +00:00
15 lines
291 B
Plaintext
15 lines
291 B
Plaintext
<?php
|
|
|
|
namespace Illuminate\Routing;
|
|
|
|
class Route
|
|
{
|
|
/**
|
|
* Get or set the middlewares attached to the route.
|
|
*
|
|
* @param string[]|string|null $middleware
|
|
* @return ($middleware is null ? string[] : $this)
|
|
*/
|
|
public function middleware($middleware = null);
|
|
}
|