Rename composer_path into composer_cmd

This commit is contained in:
Kuba Turek
2014-08-20 17:45:30 +02:00
parent 6196cda70b
commit 48420c1c2a
3 changed files with 5 additions and 4 deletions
@@ -19,8 +19,9 @@ use Mage\Task\AbstractTask;
*/
abstract class ComposerAbstractTask extends AbstractTask
{
protected function getComposerPath()
protected function getComposerCmd()
{
return $this->getConfig()->general('composer_path', 'php composer.phar');
return $this->getConfig()->general('composer_cmd', 'php composer.phar');
}
}