領収証発行サービス
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
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. }