id = $note->uri; $this->content = $note->message_html; $this->published = $note->published_at->format(DATE_W3C); $this->attributedTo = $note->actor->uri; if ($note->is_reply) { $this->inReplyTo = $note->reply_to_note->uri; } $this->replies = base_url( route_to('note-replies', $note->actor->username, $note->id), ); $this->cc = [$note->actor->followers_url]; } }