public function handle()

in app/Http/Middleware/DTInterceptor.php [136:144]


    public function handle(Request $request, Closure $next)
    {
        if ($this->isEnabled && $this->randomForwardToService($request)) {
            // this return is not reachable
            return null;
        }

        return $next($request);
    }