Uri::withPath( $path ): static

In this article

Return

static

Source

public function withPath($path): UriInterface
{
    if ($this->path === $path = $this->filterPath($path)) {
        return $this;
    }
    $new = clone $this;
    $new->path = $path;
    return $new;
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.