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

22 行
270B

  1. <?php
  2. namespace App\Files\PDF;
  3. class Receipt extends PDFFile
  4. {
  5. protected const DIR = [
  6. ...parent::DIR,
  7. 'receipt'
  8. ];
  9. /**
  10. * @override
  11. */
  12. protected function getFileTypeName(): string
  13. {
  14. return "ReceiptPDF";
  15. }
  16. }