BaseService.php 602 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. namespace App\Http\Service;
  3. class BaseService
  4. {
  5. private $code=500;
  6. private $error="";
  7. /**
  8. * @return int
  9. */
  10. public function getCode(): int
  11. {
  12. return $this->code;
  13. }
  14. /**
  15. * @param int $code
  16. */
  17. public function setCode(int $code): void
  18. {
  19. $this->code = $code;
  20. }
  21. /**
  22. * @return string
  23. */
  24. public function getError(): string
  25. {
  26. return $this->error;
  27. }
  28. /**
  29. * @param string $error
  30. */
  31. public function setError(string $error): void
  32. {
  33. $this->error = $error;
  34. }
  35. }