X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/f110b8ba20232e0ceeb67390f8e672431868d32d..1e5dcfe93fb41957381b5ed485ad3e49b1ea7b50:/Entity/Group.php?ds=sidebyside

diff --git a/Entity/Group.php b/Entity/Group.php
index 3ccf6ee..6e340ad 100644
--- a/Entity/Group.php
+++ b/Entity/Group.php
@@ -1,6 +1,20 @@
-<?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.
+ */
 
-// src/Rapsys/AirBundle/Entity/Group.php
 namespace Rapsys\AirBundle\Entity;
 
-class Group extends \Rapsys\UserBundle\Entity\Group {}
+use Rapsys\UserBundle\Entity\Group as BaseGroup;
+
+/**
+ * {@inheritdoc}
+ */
+class Group extends BaseGroup {
+}