From 548f6537e841234c117c695da66ce39122d6015c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Thu, 31 Oct 2024 07:50:18 +0100 Subject: [PATCH] Add bundle user repository --- Repository/UserRepository.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Repository/UserRepository.php 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 @@ + + * + * 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 { +} -- 2.41.1