소스 검색

added business transact method

develop
Robin Thoni 8 년 전
부모
커밋
fe848d4e56
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 9
    0
      src/Utils/Business/LuBusiness.php

+ 9
- 0
src/Utils/Business/LuBusiness.php 파일 보기

@@ -34,6 +34,15 @@ abstract class LuBusiness {
34 34
         throw new LuBusinessException($reason, 400);
35 35
     }
36 36
 
37
+    /**
38
+     * @param \Closure $function
39
+     * @return mixed
40
+     */
41
+    public static function transact(\Closure $function)
42
+    {
43
+        return static::getDataAccess()->transact($function);
44
+    }
45
+
37 46
     /**
38 47
      * @param $id int
39 48
      * @return LuDbo

Loading…
취소
저장