Fortune.php 208 B

12345678910111213141516
  1. <?php
  2. declare(strict_types=1);
  3. namespace ImiApp\Model\PgSql;
  4. use Imi\Bean\Annotation\Inherit;
  5. use ImiApp\Model\PgSql\Base\FortuneBase;
  6. /**
  7. * Fortune
  8. * @Inherit
  9. */
  10. class Fortune extends FortuneBase
  11. {
  12. }