From: Raphaël Gertz <git@rapsys.eu>
Date: Tue, 26 Mar 2024 18:19:01 +0000 (+0100)
Subject: Add strict types
X-Git-Tag: 0.5.0~17
X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/f13423c9cde0b388c1e2269c97d3e8f43b6aaaca

Add strict types
Cleanup
---

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}