2012-03-27 20:13:49 -03:00
|
|
|
<?php
|
2012-09-23 19:38:47 -03:00
|
|
|
class Mage_Task_BuiltIn_Symfony1_ClearCache
|
2012-03-27 20:13:49 -03:00
|
|
|
extends Mage_Task_TaskAbstract
|
|
|
|
|
{
|
|
|
|
|
public function getName()
|
|
|
|
|
{
|
|
|
|
|
return 'Symfony v1 - Clear Cache [built-in]';
|
|
|
|
|
}
|
2012-09-23 19:38:47 -03:00
|
|
|
|
2012-03-27 20:13:49 -03:00
|
|
|
public function run()
|
|
|
|
|
{
|
|
|
|
|
$command = 'symfony cc';
|
|
|
|
|
$result = $this->_runLocalCommand($command);
|
2012-09-23 19:38:47 -03:00
|
|
|
|
2012-03-27 20:13:49 -03:00
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
}
|