- Issue created by @web247
Once the module the is enabled, the following warning is displayed:
Deprecated function: Creation of dynamic property Drupal\views_pretty_path\PathProcessor\ViewsPrettyPathProcessor::$currentRequest is deprecated in Drupal\views_pretty_path\PathProcessor\ViewsPrettyPathProcessor->__construct() (line 128 of modules/custom/views_pretty_path/src/PathProcessor/ViewsPrettyPathProcessor.php
I fixed it by adding the protected property:
/**
* Current request.
*
* @var \Symfony\Component\HttpFoundation\RequestStack
*/
protected $currentRequest;
Active
1.0
Code