[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/harbormaster/storage/ -> HarbormasterBuildCommand.php (source)

   1  <?php
   2  
   3  final class HarbormasterBuildCommand extends HarbormasterDAO {
   4  
   5    const COMMAND_STOP = 'stop';
   6    const COMMAND_RESUME = 'resume';
   7    const COMMAND_RESTART = 'restart';
   8  
   9    protected $authorPHID;
  10    protected $targetPHID;
  11    protected $command;
  12  
  13    public function getConfiguration() {
  14      return array(
  15        self::CONFIG_COLUMN_SCHEMA => array(
  16          'command' => 'text128',
  17        ),
  18        self::CONFIG_KEY_SCHEMA => array(
  19          'key_target' => array(
  20            'columns' => array('targetPHID'),
  21          ),
  22        ),
  23      ) + parent::getConfiguration();
  24    }
  25  
  26  }


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1