Browse Source

Add Stage Constants.

1.0
Andrés Montañez 11 years ago
parent
commit
d55e18b34b
  1. 24
      Mage/Task/AbstractTask.php

24
Mage/Task/AbstractTask.php

@ -25,6 +25,30 @@ use Exception;
*/ */
abstract class AbstractTask abstract class AbstractTask
{ {
/**
* Stage Constant for Pre Deployment
* @var string
*/
const STAGE_PRE_DEPLOY = 'pre-deploy';
/**
* Stage Constant for Deployment
* @var string
*/
const STAGE_DEPLOY = 'deploy';
/**
* Stage Constant for Post Deployment
* @var string
*/
const STAGE_POST_DEPLOY = 'post-deploy';
/**
* Stage Constant for Post Release
* @var string
*/
const STAGE_POST_RELEASE = 'post-release';
/** /**
* Configuration * Configuration
* @var Config; * @var Config;

Loading…
Cancel
Save