* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Mage\Deploy\Strategy; use Mage\Runtime\Runtime; /** * Interface for Deploy Strategies * * @author Andrés Montañez */ interface StrategyInterface { public function getName(); public function setRuntime(Runtime $runtime); public function getPreDeployTasks(); public function getOnDeployTasks(); public function getOnReleaseTasks(); public function getPostReleaseTasks(); public function getPostDeployTasks(); }