From 4faf9d416278c6a151432c28954d1e45e4eaa1d6 Mon Sep 17 00:00:00 2001 From: Andrey Date: Wed, 30 Nov 2016 19:32:38 +0700 Subject: [PATCH] Compatibility with Symfony 2 --- Form/Type/FormStaticControlRawType.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Form/Type/FormStaticControlRawType.php b/Form/Type/FormStaticControlRawType.php index 7257b0a..2d48516 100644 --- a/Form/Type/FormStaticControlRawType.php +++ b/Form/Type/FormStaticControlRawType.php @@ -29,4 +29,12 @@ public function getBlockPrefix() { return 'bs_static_raw'; } + + /** + * Compatibility with Symfony 2 + */ + public function getName() + { + return 'bs_static_raw'; + } }