Page MenuHomec4science

AphrontDialogResponse.php
No OneTemporary

File Metadata

Created
Mon, Jul 15, 22:21

AphrontDialogResponse.php

<?php
final class AphrontDialogResponse extends AphrontResponse {
private $dialog;
public function setDialog(AphrontDialogView $dialog) {
$this->dialog = $dialog;
return $this;
}
public function getDialog() {
return $this->dialog;
}
public function buildResponseString() {
return $this->dialog->render();
}
}

Event Timeline