我正在使用Laravel 5.3并且在其中一个功能中,我发现了这一部分 代码:
public function handle($request, Closure $next, ...$guards)
{
$this->authenticate($guards);
return $next($request);
}
代码来自\Illuminate\Auth\Middleware\Authenticate::class
。
$guards
变量之前的那3个点是什么?