Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/aphront/response/AphrontDialogResponse.php
12241 views
1
<?php
2
3
final 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
}
21
22