Fortune.php 196 B

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