Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / applications / phpast / storage / PhabricatorXHPASTParseTree.php
blobc0e24feb2bd52a83a2eadbb4a93188bc838e1fa6
1 <?php
3 final class PhabricatorXHPASTParseTree extends PhabricatorXHPASTDAO {
5 protected $authorPHID;
6 protected $input;
7 protected $returnCode;
8 protected $stdout;
9 protected $stderr;
11 protected function getConfiguration() {
12 return array(
13 self::CONFIG_COLUMN_SCHEMA => array(
14 'authorPHID' => 'phid?',
15 'input' => 'text',
16 'returnCode' => 'sint32',
17 'stdout' => 'text',
18 'stderr' => 'text',
20 ) + parent::getConfiguration();