Page MenuHomec4science

PhabricatorXHPASTParseTree.php
No OneTemporary

File Metadata

Created
Sun, Oct 13, 21:40

PhabricatorXHPASTParseTree.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();
}
}

Event Timeline