PostTestRepository.php 351 B

123456789101112131415
  1. <?php
  2. namespace Test\PhpDevCommunity\PaperORM\Repository;
  3. use PhpDevCommunity\PaperORM\Repository\Repository;
  4. use Test\PhpDevCommunity\PaperORM\Entity\PostTest;
  5. use Test\PhpDevCommunity\PaperORM\Entity\UserTest;
  6. class PostTestRepository extends Repository
  7. {
  8. public function getEntityName(): string
  9. {
  10. return PostTest::class;
  11. }
  12. }