@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 20 lines 345 B view raw
1<?php 2 3final class AphrontDialogResponse extends AphrontResponse { 4 5 private $dialog; 6 7 public function setDialog(AphrontDialogView $dialog) { 8 $this->dialog = $dialog; 9 return $this; 10 } 11 12 public function getDialog() { 13 return $this->dialog; 14 } 15 16 public function buildResponseString() { 17 return $this->dialog->render(); 18 } 19 20}