for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mydnic\AllowLongRequests\Http\Middleware;
use Closure;
class AllowLongRequests
{
public function handle($request, Closure $next)
set_time_limit(config('allow-long-requests.wait'));
return $next($request);
}