1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-08-25 21:00:18 +02:00

Renamed classes to match the command

This commit is contained in:
Ismael Ambrosi 2012-06-26 20:01:11 -03:00
parent 384aa3cf79
commit 50f2781649
2 changed files with 8 additions and 8 deletions

View File

@ -1,17 +1,17 @@
<?php
class Mage_Task_BuiltIn_Symfony_ClearCache
class Mage_Task_BuiltIn_Symfony_Migrate
extends Mage_Task_TaskAbstract
{
public function getName()
{
return 'Symfony v1 - Run Migrations [built-in]';
}
public function run()
{
$command = 'symfony doctrine:migrate';
$result = $this->_runLocalCommand($command);
return $result;
}
}
}

View File

@ -1,17 +1,17 @@
<?php
class Mage_Task_BuiltIn_Symfony2_ClearCache
class Mage_Task_BuiltIn_Symfony2_Migrate
extends Mage_Task_TaskAbstract
{
public function getName()
{
return 'Symfony v2 - Run Migrations [built-in]';
}
public function run()
{
$command = 'app/console doctrine:migrations:migrate';
$result = $this->_runLocalCommand($command);
return $result;
}
}
}