ErrorTrait.php 608 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace crmeb\traits;
  3. /**
  4. *
  5. * Class BaseError
  6. * @package crmeb\basic
  7. */
  8. trait ErrorTrait
  9. {
  10. /**
  11. * 错误信息
  12. * @var string
  13. */
  14. protected $error;
  15. /**
  16. * 设置错误信息
  17. * @param string|null $error
  18. * @return bool
  19. */
  20. protected function setError(?string $error = null)
  21. {
  22. $this->error = $error ?: '未知错误';
  23. return false;
  24. }
  25. /**
  26. * 获取错误信息
  27. * @return string
  28. */
  29. public function getError()
  30. {
  31. $error = $this->error;
  32. $this->error = null;
  33. return $error;
  34. }
  35. }