No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

22 líneas
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. }