url = $url; $this->priority = $priority; $this->changeFrequency = $changeFrequency; $this->updatedAt = $updatedAt; $this->images = $images; } /** * {@inheritdoc} */ public function getUrl() { return $this->url; } /** * {@inheritdoc} */ public function getPriority() { return $this->priority; } /** * {@inheritdoc} */ public function getChangeFrequency() { return $this->changeFrequency; } /** * {@inheritdoc} */ public function getImages() { return $this->images; } /** * {@inheritdoc} */ public function getUpdatedAt() { return $this->updatedAt; } }