By dawehner on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
8.x
Issue links:
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