領収証発行サービス
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

28 行
386B

  1. <?php
  2. namespace App\Files\PDF\Receipt;
  3. use App\Files\TmpFile;
  4. class A4Receipt extends TmpFile
  5. {
  6. protected const DIR = ['receipt_pdf'];
  7. /**
  8. * @override
  9. */
  10. protected function getFileTypeName(): string
  11. {
  12. return "A4Receipt";
  13. }
  14. /**
  15. * @override
  16. */
  17. protected function getFileExtension(): string
  18. {
  19. return "pdf";
  20. }
  21. }