From 1a95142461f3c93c5f9ef12a01dac35bdf2988c8 Mon Sep 17 00:00:00 2001 From: Sergii Kliuchnyk Date: Fri, 9 Nov 2012 15:55:29 +0200 Subject: [PATCH] $options should be protected --- Model/Form/BaseAbstractType.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Model/Form/BaseAbstractType.php b/Model/Form/BaseAbstractType.php index bacc405..8a9b559 100644 --- a/Model/Form/BaseAbstractType.php +++ b/Model/Form/BaseAbstractType.php @@ -7,7 +7,7 @@ use Symfony\Component\OptionsResolver\OptionsResolverInterface; abstract class BaseAbstractType extends AbstractType { - private $options = array( + protected $options = array( 'name' => '', );