From f13423c9cde0b388c1e2269c97d3e8f43b6aaaca Mon Sep 17 00:00:00 2001
From: =?utf8?q?Rapha=C3=ABl=20Gertz?= <git@rapsys.eu>
Date: Tue, 26 Mar 2024 19:19:01 +0100
Subject: [PATCH] Add strict types Cleanup

---
 Form/ContactType.php | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/Form/ContactType.php b/Form/ContactType.php
index adee525..93951e9 100644
--- a/Form/ContactType.php
+++ b/Form/ContactType.php
@@ -1,4 +1,13 @@
-<?php
+<?php declare(strict_types=1);
+
+/*
+ * This file is part of the Rapsys AirBundle package.
+ *
+ * (c) Raphaël Gertz <symfony@rapsys.eu>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
 
 namespace Rapsys\AirBundle\Form;
 
@@ -13,6 +22,9 @@ use Symfony\Component\Form\Extension\Core\Type\SubmitType;
 use Symfony\Component\Validator\Constraints\Email;
 use Symfony\Component\Validator\Constraints\NotBlank;
 
+/**
+ * {@inheritdoc}
+ */
 class ContactType extends CaptchaType {
 	/**
 	 * {@inheritdoc}
-- 
2.41.1