12 lines
282 B
PHP
12 lines
282 B
PHP
<?php
|
|
|
|
final class PhabricatorXHPASTViewInputController
|
|
extends PhabricatorXHPASTViewPanelController {
|
|
|
|
public function processRequest() {
|
|
$input = $this->getStorageTree()->getInput();
|
|
return $this->buildXHPASTViewPanelResponse(
|
|
phutil_escape_html($input));
|
|
}
|
|
}
|