Gajus\Fuss\Request::setPath PHP Метод

setPath() приватный Метод

private setPath ( string $path ) : null
$path string
Результат null
    private function setPath($path)
    {
        if (strpos($path, '?') !== false) {
            throw new Exception\RequestException('Path must not have hard-coded query parameters.');
        }
        $this->path = ltrim($path, '/');
    }