public function RequestContext::setPathInfo

Sets the path info.

Parameters

string $pathInfo The path info:

1 call to RequestContext::setPathInfo()
RequestContext::fromRequest in drupal/core/vendor/symfony/routing/Symfony/Component/Routing/RequestContext.php

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/RequestContext.php, line 114

Class

RequestContext
Holds information about the current request.

Namespace

Symfony\Component\Routing

Code

public function setPathInfo($pathInfo) {
  $this->pathInfo = $pathInfo;
}