Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Request.php
Go to the documentation of this file.
1 <?php
7 
9 
10 class Request
11 {
17  private $pathInfo;
18 
22  public function __construct(HttpRequest $request)
23  {
24  $this->pathInfo = str_replace('..', '', ltrim($request->getPathInfo(), '/'));
25  }
26 
32  public function getPathInfo()
33  {
34  return $this->pathInfo;
35  }
36 }