TransTrait.php 740 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher\traits\db;
  4. use think\facade\Db;
  5. trait TransTrait
  6. {
  7. /**
  8. *
  9. * @time 2019年12月03日
  10. * @return void
  11. */
  12. public function startTrans()
  13. {
  14. Db::startTrans();
  15. }
  16. /**
  17. *
  18. * @time 2019年12月03日
  19. * @return void
  20. */
  21. public function commit()
  22. {
  23. Db::commit();
  24. }
  25. /**
  26. *
  27. * @time 2019年12月03日
  28. * @return void
  29. */
  30. public function rollback()
  31. {
  32. Db::rollback();
  33. }
  34. /**
  35. *
  36. * @time 2019年12月03日
  37. * @param \Closure $function
  38. * @return void
  39. */
  40. public function transaction(\Closure $function)
  41. {
  42. Db::transaction($function());
  43. }
  44. }