From: Raphaël Gertz <git@rapsys.eu>
Date: Thu, 31 Oct 2024 06:50:18 +0000 (+0100)
Subject: Add bundle user repository
X-Git-Tag: 0.0.5~1
X-Git-Url: https://git.rapsys.eu/treebundle/commitdiff_plain/548f6537e841234c117c695da66ce39122d6015c

Add bundle user repository
---

diff --git a/Repository/UserRepository.php b/Repository/UserRepository.php
new file mode 100644
index 0000000..b2cfbd6
--- /dev/null
+++ b/Repository/UserRepository.php
@@ -0,0 +1,20 @@
+<?php declare(strict_types=1);
+
+/*
+ * This file is part of the Rapsys TreeBundle 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\TreeBundle\Repository;
+
+use Rapsys\UserBundle\Repository\UserRepository as BaseUserRepository;
+
+/**
+ * UserRepository
+ */
+class UserRepository extends BaseUserRepository {
+}