領収証発行サービス
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

22 linhas
350B

  1. <?php
  2. namespace App\Exceptions;
  3. use Exception;
  4. class TempFileNotExistsException extends Exception
  5. {
  6. private $filepath = "";
  7. public function setFilepath(string $filepath): static
  8. {
  9. $this->filepath = $filepath;
  10. return $this;
  11. }
  12. public function getFilepath(): string
  13. {
  14. return $this->filepath;
  15. }
  16. }