@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
at recaptime-dev/main 16 lines 225 B view raw
1<?php 2 3final class DiffusionRefNotFoundException extends Exception { 4 5 private $ref; 6 7 public function setRef($ref) { 8 $this->ref = $ref; 9 return $this; 10 } 11 12 public function getRef() { 13 return $this->ref; 14 } 15 16}