User.php (181B) download
1<?php
2class User extends Lollipop\DatabaseObject
3{
4 static function get_table(): string
5 {
6 return "user";
7 }
8
9 static function get_primary(): string
10 {
11 return "user_id";
12 }
13}
14?>
hanze/iwa-panda1classes/User.php in tak | |
Repositories | Summary | Log | Files |
User.php (181B) download
1<?php
2class User extends Lollipop\DatabaseObject
3{
4 static function get_table(): string
5 {
6 return "user";
7 }
8
9 static function get_primary(): string
10 {
11 return "user_id";
12 }
13}
14?>