Generate expected schemata for Workers, XHProf, PHPAAST, Tokens, System, Slowvote

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
This commit is contained in:
epriestley
2014-09-19 05:45:24 -07:00
parent e9ac3f436a
commit 7499cb24ce
19 changed files with 203 additions and 0 deletions

View File

@@ -6,4 +6,14 @@ final class PhabricatorXHPASTViewParseTree extends PhabricatorXHPASTViewDAO {
protected $input;
protected $stdout;
public function getConfiguration() {
return array(
self::CONFIG_COLUMN_SCHEMA => array(
'authorPHID' => 'phid?',
'input' => 'text',
'stdout' => 'text',
),
) + parent::getConfiguration();
}
}

View File

@@ -0,0 +1,10 @@
<?php
final class PhabricatorXHPASTViewSchemaSpec
extends PhabricatorConfigSchemaSpec {
public function buildSchemata() {
$this->buildLiskSchemata('PhabricatorXHPASTViewDAO');
}
}