From 47feb194762310971bfabd6e383db4a3afd8936c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arkadiusz=20Dzi=C4=99giel?= Date: Wed, 7 Sep 2011 14:42:07 +0200 Subject: [PATCH] apply user build_properties --- Command/AbstractPropelCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Command/AbstractPropelCommand.php b/Command/AbstractPropelCommand.php index a8569d5..b243326 100644 --- a/Command/AbstractPropelCommand.php +++ b/Command/AbstractPropelCommand.php @@ -155,8 +155,8 @@ abstract class AbstractPropelCommand extends ContainerAwareCommand // Adding user defined properties from the configuration $properties = array_merge( - $this->getContainer()->get('propel.build_properties')->getProperties(), - $properties + $properties, + $this->getContainer()->get('propel.build_properties')->getProperties() ); foreach ($properties as $key => $value) {