Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php final class AphrontDialogResponse extends AphrontResponse { private $dialog; ..
Decoded Output download
<?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();
}
}
?>
Did this file decode correctly?
Original Code
<?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();
}
}
Function Calls
None |
Stats
MD5 | e4fc02e0387fdfeb5fe85be3496cdd5b |
Eval Count | 0 |
Decode Time | 80 ms |