mirror of
https://github.com/axeloz/filesharing.git
synced 2025-05-06 10:03:55 +02:00
20 lines
332 B
PHP
20 lines
332 B
PHP
<?php
|
|
|
|
namespace app\Http\Middleware;
|
|
|
|
use Closure;
|
|
|
|
class UploadAccess
|
|
{
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \Closure $next
|
|
* @return mixed
|
|
*/
|
|
public function handle($request, Closure $next)
|
|
{
|
|
return $next($request);
|
|
}
|
|
}
|