]> Raphaël G. Git Repositories - airbundle/blobdiff - Entity/Group.php
Add strict
[airbundle] / Entity / Group.php
index a53e1403a7d904a78966d21db91023a80015ecf5..b904a0df873e1ba2e7a96d9d9cd9aa92703d8a7e 100644 (file)
@@ -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 {
+}