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.

22 line
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. }