BaseLogic.php 603 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. namespace App\Http\Logic;
  3. class BaseLogic
  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. }