1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-08-25 21:00:18 +02:00
Magallanes/Mage/Task/BuiltIn/Symfony1/ClearCache.php
2012-09-23 19:38:47 -03:00

17 lines
334 B
PHP

<?php
class Mage_Task_BuiltIn_Symfony1_ClearCache
extends Mage_Task_TaskAbstract
{
public function getName()
{
return 'Symfony v1 - Clear Cache [built-in]';
}
public function run()
{
$command = 'symfony cc';
$result = $this->_runLocalCommand($command);
return $result;
}
}