mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-08 10:28:29 +02:00
Summary: Rename the XHPAST database from `{$NAMESPACE}_xpastview` to `{$NAMESPACE}_xhpast`. Test Plan: Ran `./bin/storage --namespace test upgrade --no-quickstart`. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D14442
22 lines
495 B
PHP
22 lines
495 B
PHP
<?php
|
|
|
|
final class PhabricatorXHPASTParseTree extends PhabricatorXHPASTDAO {
|
|
|
|
protected $authorPHID;
|
|
protected $input;
|
|
protected $returnCode;
|
|
protected $stdout;
|
|
protected $stderr;
|
|
|
|
protected function getConfiguration() {
|
|
return array(
|
|
self::CONFIG_COLUMN_SCHEMA => array(
|
|
'authorPHID' => 'phid?',
|
|
'input' => 'text',
|
|
'returnCode' => 'sint32',
|
|
'stdout' => 'text',
|
|
'stderr' => 'text',
|
|
),
|
|
) + parent::getConfiguration();
|
|
}
|
|
}
|