mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-29 02:02:41 +01:00
7499cb24ce
Summary: T1191. Nothing very notable here. Test Plan: Saw more blue in web UI. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D10522
19 lines
393 B
PHP
19 lines
393 B
PHP
<?php
|
|
|
|
final class PhabricatorXHPASTViewParseTree extends PhabricatorXHPASTViewDAO {
|
|
|
|
protected $authorPHID;
|
|
|
|
protected $input;
|
|
protected $stdout;
|
|
|
|
public function getConfiguration() {
|
|
return array(
|
|
self::CONFIG_COLUMN_SCHEMA => array(
|
|
'authorPHID' => 'phid?',
|
|
'input' => 'text',
|
|
'stdout' => 'text',
|
|
),
|
|
) + parent::getConfiguration();
|
|
}
|
|
}
|