hanze/iwa-panda2

Model/User.php in map-leaflet
Repositories | Summary | Log | Files | README.md

User.php (287B) download


 1<?php
 2
 3namespace Model {
 4    class User extends \Lollipop\DatabaseObject
 5    {
 6        public static function get_table(): string
 7        {
 8            return "user";
 9        }
10
11        public static function get_primary(): string
12        {
13            return "email";
14        }
15    }
16}