Files
Magallanes/Mage/Task/BuiltIn/Symfony2/CacheWarmup.php
T

18 lines
351 B
PHP
Raw Normal View History

2012-03-27 20:13:49 -03:00
<?php
class Mage_Task_BuiltIn_Symfony2_CacheWarmup
extends Mage_Task_TaskAbstract
{
public function getName()
{
return 'Symfony v2 - Cache Warmup [built-in]';
}
2012-03-27 20:13:49 -03:00
public function run()
{
$command = 'app/console cache:warmup';
$result = $this->_runLocalCommand($command);
2012-03-27 20:13:49 -03:00
return $result;
}
}