@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 DiffusionGitWireProtocolCapabilities
4 extends Phobject {
5
6 private $raw;
7
8 public static function newFromWireFormat($raw) {
9 $capabilities = new self();
10 $capabilities->raw = $raw;
11 return $capabilities;
12 }
13
14 public function toWireFormat() {
15 return $this->raw;
16 }
17
18}