X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/6aa1c68184620c66baf3c56f9ebdb8b5723830e4..652c1a809f2b5731d9ffb57da669d295bc38b8e4:/Entity/Group.php

diff --git a/Entity/Group.php b/Entity/Group.php
index a53e140..b904a0d 100644
--- a/Entity/Group.php
+++ b/Entity/Group.php
@@ -1,5 +1,17 @@
-<?php
+<?php declare(strict_types=1);
+
+/*
+ * this file is part of the rapsys packbundle 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\Entity;
 
-class Group extends \Rapsys\UserBundle\Entity\Group {}
+use Rapsys\UserBundle\Entity\Group as BaseGroup;
+
+class Group extends BaseGroup {
+}