@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
phorge
phabricator
1<?php
2
3final class RemarkupValue
4 extends Phobject {
5
6 private $corpus;
7 private $metadata;
8
9 public function setCorpus($corpus) {
10 $this->corpus = $corpus;
11 return $this;
12 }
13
14 public function getCorpus() {
15 return $this->corpus;
16 }
17
18 public function setMetadata(array $metadata) {
19 $this->metadata = $metadata;
20 return $this;
21 }
22
23 public function getMetadata() {
24 return $this->metadata;
25 }
26
27}