aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/User/Repository.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/namespace/User/Repository.php')
-rw-r--r--core/namespace/User/Repository.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/core/namespace/User/Repository.php b/core/namespace/User/Repository.php
new file mode 100644
index 0000000..59205b3
--- /dev/null
+++ b/core/namespace/User/Repository.php
@@ -0,0 +1,7 @@
+<?php
+namespace User;
+
+class Repository extends \Repository {
+ public static function getTableName(): string { return 'user'; }
+ public static function getClassName(): string { return 'User\Entity'; }
+}