1
0
mirror of https://github.com/glmdev/eecs448-lab10 synced 2026-03-02 03:39:24 +00:00

Initial commit

This commit is contained in:
2020-12-06 13:58:02 -06:00
commit 5a54fe251d
24 changed files with 911 additions and 0 deletions

11
app/UserRepository.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
namespace app;
use common\database\Repository;
class UserRepository extends Repository {
protected $table = 'users';
protected $primary_key = 'user_id';
protected $fields = ['user_id', 'username'];
}