1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-08-26 05:10:17 +02:00
Magallanes/Mage/Task/TaskAbstract.php

17 lines
334 B
PHP

<?php
abstract class Mage_Task_TaskAbstract
{
public abstract function getName();
public abstract function run($config);
protected function _runLocalCommand($command)
{
return Mage_Console::executeCommand($command);
}
protected function _runRemoteCommand($command)
{
}
}