From 57664eba4122f4dfad1482ce90410f4c9248fe5e Mon Sep 17 00:00:00 2001 From: Zeljko Mitic Date: Fri, 14 Apr 2023 19:46:57 +0200 Subject: [PATCH] [framework bundle] abstract controller createForm visibility --- .../FrameworkBundle/Controller/AbstractController.stubphp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Stubs/6/Bundle/FrameworkBundle/Controller/AbstractController.stubphp b/src/Stubs/6/Bundle/FrameworkBundle/Controller/AbstractController.stubphp index 9dd5b346..bdf1c0bd 100644 --- a/src/Stubs/6/Bundle/FrameworkBundle/Controller/AbstractController.stubphp +++ b/src/Stubs/6/Bundle/FrameworkBundle/Controller/AbstractController.stubphp @@ -23,5 +23,5 @@ class AbstractController implements ServiceSubscriberInterface * * @psalm-return FormInterface */ - public function createForm(string $type, $data = null, array $options = []): FormInterface {} + protected function createForm(string $type, $data = null, array $options = []): FormInterface {} }