Page MenuHomec4science

HarbormasterBuildCommand.php
No OneTemporary

File Metadata

Created
Tue, Jun 3, 06:04

HarbormasterBuildCommand.php

<?php
final class HarbormasterBuildCommand extends HarbormasterDAO {
const COMMAND_STOP = 'stop';
const COMMAND_RESUME = 'resume';
const COMMAND_RESTART = 'restart';
protected $authorPHID;
protected $targetPHID;
protected $command;
public function getConfiguration() {
return array(
self::CONFIG_COLUMN_SCHEMA => array(
'command' => 'text128',
),
self::CONFIG_KEY_SCHEMA => array(
'key_target' => array(
'columns' => array('targetPHID'),
),
),
) + parent::getConfiguration();
}
}

Event Timeline