Rewrite Symfony v2 Commands.

This commit is contained in:
Andrés Montañez
2013-10-13 13:15:28 -02:00
parent f6df60a406
commit 3872fc35f0
6 changed files with 59 additions and 22 deletions
@@ -0,0 +1,20 @@
<?php
class Mage_Task_BuiltIn_Symfony2_AsseticDump
extends Mage_Task_TaskAbstract
{
public function getName()
{
return 'Symfony v2 - Assetic Dump [built-in]';
}
public function run()
{
// Options
$env = $this->getParameter('env', 'dev');
$command = 'app/console assetic:dump --env=' . $env;
$result = $this->_runLocalCommand($command);
return $result;
}
}