url = $url; $this->subject = $subject; } private function get_subject_url(): string { return $this->url.'/'.$this->subject; } public function publish(string $content): notification { return new notification($this->get_subject_url(), $content); } }