From 9a5697bdce686f306f1cd66db74187df2a4c4e1d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Fri, 10 Nov 2023 12:27:25 +0100 Subject: [PATCH] Strict types --- Form/CaptchaType.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Form/CaptchaType.php b/Form/CaptchaType.php index d479b47..da087c0 100644 --- a/Form/CaptchaType.php +++ b/Form/CaptchaType.php @@ -67,7 +67,7 @@ class CaptchaType extends AbstractType { * * {@inheritdoc} */ - public function buildForm(FormBuilderInterface $builder, array $options) { + public function buildForm(FormBuilderInterface $builder, array $options): void { //Set captcha $captcha = $this->image->getCaptcha((new \DateTime('-1 year'))->getTimestamp()); -- 2.41.0