aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/User
diff options
context:
space:
mode:
Diffstat (limited to 'core/namespace/User')
-rw-r--r--core/namespace/User/Entity.php15
-rw-r--r--core/namespace/User/Repository.php7
2 files changed, 0 insertions, 22 deletions
diff --git a/core/namespace/User/Entity.php b/core/namespace/User/Entity.php
deleted file mode 100644
index fdfaf9e..0000000
--- a/core/namespace/User/Entity.php
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
-namespace User;
-
-class Entity extends \Entity {
- protected $id = FALSE;
- protected $slug = FALSE;
- protected $username = FALSE;
- protected $password = FALSE;
- protected $fullname = FALSE;
- protected $mailaddr = FALSE;
- protected $body = FALSE;
- protected $argv = FALSE;
- protected $time_insert = FALSE;
- protected $time_update = FALSE;
-}
diff --git a/core/namespace/User/Repository.php b/core/namespace/User/Repository.php
deleted file mode 100644
index 59205b3..0000000
--- a/core/namespace/User/Repository.php
+++ /dev/null
@@ -1,7 +0,0 @@
-<?php
-namespace User;
-
-class Repository extends \Repository {
- public static function getTableName(): string { return 'user'; }
- public static function getClassName(): string { return 'User\Entity'; }
-}