aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/ORM/Repositories/PostRepository.php
blob: 400d596a4021294ceacad687e07a1ed0d4f6d15b (plain)
1
2
3
4
5
6
7
8
<?php
namespace ORM\Repositories;
use ORM\Repository;

class PostRepository extends Repository {
	public static function getTableName(): string { return 'post'; }
	public static function getClassName(): string { return 'ORM\Entities\Post'; }
}