aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/User/Repository.php
blob: 59205b38b77369f6ae4730c84f8fe0120c10c73c (plain)
1
2
3
4
5
6
7
<?php
namespace User;

class Repository extends \Repository {
	public static function getTableName(): string { return 'user'; }
	public static function getClassName(): string { return 'User\Entity'; }
}