diff options
Diffstat (limited to 'core/namespace/User')
-rw-r--r-- | core/namespace/User/Entity.php | 15 | ||||
-rw-r--r-- | core/namespace/User/Repository.php | 7 |
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'; } -} |