Change record status: 
Project: 
Introduced in branch: 
8.x
Description: 

There is a new request helper class which allows you to create a request on a performant way using an existing request.

Before

  $request = Request::create('/' . $href);

After


use Drupal\Core\Routing\RequestHelper;

  $request = RequestHelper::duplicate(\Drupal::request(), '/' . $href);
Impacts: 
Module developers