mirror of https://github.com/hauke68/Magallanes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
423 B
20 lines
423 B
<?php |
|
class Mage_Task_BuiltIn_Symfony2_CacheWarmup |
|
extends Mage_Task_TaskAbstract |
|
{ |
|
public function getName() |
|
{ |
|
return 'Symfony v2 - Cache Warmup [built-in]'; |
|
} |
|
|
|
public function run() |
|
{ |
|
// Options |
|
$env = $this->getParameter('env', 'dev'); |
|
|
|
$command = 'app/console cache:warmup --env=' . $env; |
|
$result = $this->runCommand($command); |
|
|
|
return $result; |
|
} |
|
}
|
|
|