]> Raphaël G. Git Repositories - airbundle/blobdiff - Entity/Group.php
Rename locales
[airbundle] / Entity / Group.php
index 3ccf6ee3edd9d2eeeaa71bb9de1d637f1e581836..b904a0df873e1ba2e7a96d9d9cd9aa92703d8a7e 100644 (file)
@@ -1,6 +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.
+ */
 
-// src/Rapsys/AirBundle/Entity/Group.php
 namespace Rapsys\AirBundle\Entity;
 
-class Group extends \Rapsys\UserBundle\Entity\Group {}
+use Rapsys\UserBundle\Entity\Group as BaseGroup;
+
+class Group extends BaseGroup {
+}