From 80a6b9ce144395c7819c691ef8a223877e9f7b7b Mon Sep 17 00:00:00 2001 From: Patrick Rathje Date: Wed, 17 Aug 2016 22:38:00 +0200 Subject: [PATCH] Update AbstractApiType.php --- Form/Type/AbstractApiType.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Form/Type/AbstractApiType.php b/Form/Type/AbstractApiType.php index 8705f69..b320101 100644 --- a/Form/Type/AbstractApiType.php +++ b/Form/Type/AbstractApiType.php @@ -6,7 +6,7 @@ use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolver; -class AbstractApiType extends AbstractType { +abstract class AbstractApiType extends AbstractType { private static $apiRequestHandler; @@ -34,4 +34,4 @@ public function configureOptions(OptionsResolver $resolver) { $resolver->setDefault('csrf_protection', false); } -} \ No newline at end of file +}