Returns the path being requested relative to the executed script.
The path info always starts with a /.
Suppose this request is instantiated from /mysite on localhost:
@api
string The raw path (i.e. not urldecoded)
public function getPathInfo() {
if (null === $this->pathInfo) {
$this->pathInfo = $this
->preparePathInfo();
}
return $this->pathInfo;
}