Changeset View
Changeset View
Standalone View
Standalone View
src/applications/phpast/storage/PhabricatorXHPASTViewParseTree.php
| <?php | <?php | ||||
| final class PhabricatorXHPASTViewParseTree extends PhabricatorXHPASTViewDAO { | final class PhabricatorXHPASTViewParseTree extends PhabricatorXHPASTViewDAO { | ||||
| protected $authorPHID; | protected $authorPHID; | ||||
| protected $input; | protected $input; | ||||
| protected $returnCode; | |||||
| protected $stdout; | protected $stdout; | ||||
| protected $stderr; | |||||
| protected function getConfiguration() { | protected function getConfiguration() { | ||||
| return array( | return array( | ||||
| self::CONFIG_COLUMN_SCHEMA => array( | self::CONFIG_COLUMN_SCHEMA => array( | ||||
| 'authorPHID' => 'phid?', | 'authorPHID' => 'phid?', | ||||
| 'input' => 'text', | 'input' => 'text', | ||||
| 'returnCode' => 'sint32', | |||||
| 'stdout' => 'text', | 'stdout' => 'text', | ||||
| 'stderr' => 'text', | |||||
| ), | ), | ||||
| ) + parent::getConfiguration(); | ) + parent::getConfiguration(); | ||||
| } | } | ||||
| } | } | ||||