-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit 91ca67e
committed
Use DB tx manager in
`DatabaseTransactionsManager` was introduced in Laravel to keep track of
things like pending transactions and fire transaction events, so that
e.g. dispatches could hook into transaction state.
Our trait was not using it yet, resulting in missing `afterCommit`
behavior (see PHPLIB-373)ManagesTransactions
trait1 parent c483b99 commit 91ca67e
File tree
2 files changed
+101
-0
lines changed- src/Concerns
- tests/Ticket
2 files changed
+101
-0
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
5 | 5 |
| |
6 | 6 |
| |
7 | 7 |
| |
8 | + | ||
8 | 9 |
| |
9 | 10 |
| |
10 | 11 |
| |
| |||
55 | 56 |
| |
56 | 57 |
| |
57 | 58 |
| |
59 | + | ||
60 | + | ||
58 | 61 |
| |
59 | 62 |
| |
60 | 63 |
| |
| |||
65 | 68 |
| |
66 | 69 |
| |
67 | 70 |
| |
71 | + | ||
72 | + | ||
68 | 73 |
| |
69 | 74 |
| |
70 | 75 |
| |
| |||
88 | 93 |
| |
89 | 94 |
| |
90 | 95 |
| |
96 | + | ||
97 | + | ||
91 | 98 |
| |
92 | 99 |
| |
93 | 100 |
| |
| |||
107 | 114 |
| |
108 | 115 |
| |
109 | 116 |
| |
117 | + | ||
110 | 118 |
| |
111 | 119 |
| |
112 | 120 |
| |
113 | 121 |
| |
114 | 122 |
| |
115 | 123 |
| |
124 | + | ||
125 | + | ||
116 | 126 |
| |
117 | 127 |
| |
118 | 128 |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + | ||
7 | + | ||
8 | + | ||
9 | + | ||
10 | + | ||
11 | + | ||
12 | + | ||
13 | + | ||
14 | + | ||
15 | + | ||
16 | + | ||
17 | + | ||
18 | + | ||
19 | + | ||
20 | + | ||
21 | + | ||
22 | + | ||
23 | + | ||
24 | + | ||
25 | + | ||
26 | + | ||
27 | + | ||
28 | + | ||
29 | + | ||
30 | + | ||
31 | + | ||
32 | + | ||
33 | + | ||
34 | + | ||
35 | + | ||
36 | + | ||
37 | + | ||
38 | + | ||
39 | + | ||
40 | + | ||
41 | + | ||
42 | + | ||
43 | + | ||
44 | + | ||
45 | + | ||
46 | + | ||
47 | + | ||
48 | + | ||
49 | + | ||
50 | + | ||
51 | + | ||
52 | + | ||
53 | + | ||
54 | + | ||
55 | + | ||
56 | + | ||
57 | + | ||
58 | + | ||
59 | + | ||
60 | + | ||
61 | + | ||
62 | + | ||
63 | + | ||
64 | + | ||
65 | + | ||
66 | + | ||
67 | + | ||
68 | + | ||
69 | + | ||
70 | + | ||
71 | + | ||
72 | + | ||
73 | + | ||
74 | + | ||
75 | + | ||
76 | + | ||
77 | + | ||
78 | + | ||
79 | + | ||
80 | + | ||
81 | + | ||
82 | + | ||
83 | + | ||
84 | + | ||
85 | + | ||
86 | + | ||
87 | + | ||
88 | + | ||
89 | + | ||
90 | + | ||
91 | + |
0 commit comments