mirror of
				https://github.com/hauke68/Magallanes.git
				synced 2025-11-04 09:00:18 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			334 B
		
	
	
	
		
			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)
 | 
						|
    {
 | 
						|
        
 | 
						|
    }
 | 
						|
} |