blob: 24ab47f71c0f26ae2f6dcbb84cf9bb8fd88c210f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
namespace ORM\Repositories;
use ORM\Repository;
use ORM\RepositorySearch;
class PostRepository extends Repository {
use RepositorySearch;
public static function getTableName(): string { return 'post'; }
public static function getClassName(): string { return 'ORM\Entities\Post'; }
}
|