*/ public $urlParts; /** @var string */ public $urlWithoutCommentPage; /** @var string */ public $commentPagePart; /** @var string */ public $queryString; /** * @param string $requestURI * @param array $urlParts * @param string $urlWithoutCommentPage * @param string $commentPagePart * @param string $queryString */ public function __construct(string $requestURI, array $urlParts, string $urlWithoutCommentPage, string $commentPagePart, string $queryString) { $this->requestURI = $requestURI; $this->urlParts = $urlParts; $this->urlWithoutCommentPage = $urlWithoutCommentPage; $this->commentPagePart = $commentPagePart; $this->queryString = $queryString; } }