mirror of
https://github.com/hauke68/Magallanes.git
synced 2025-08-26 05:10:17 +02:00
18 lines
351 B
PHP
18 lines
351 B
PHP
<?php
|
|
class Mage_Task_BuiltIn_Symfony2_CacheWarmup
|
|
extends Mage_Task_TaskAbstract
|
|
{
|
|
public function getName()
|
|
{
|
|
return 'Symfony v2 - Cache Warmup [built-in]';
|
|
}
|
|
|
|
public function run()
|
|
{
|
|
$command = 'app/console cache:warmup';
|
|
$result = $this->_runLocalCommand($command);
|
|
|
|
return $result;
|
|
}
|
|
}
|