Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | declare(strict_types=1); |
4 | |
5 | namespace PeServer\Core\Database; |
6 | |
7 | use PeServer\Core\Database\IDatabaseExecutor; |
8 | use PeServer\Core\Database\IDatabaseReader; |
9 | use PeServer\Core\IDisposable; |
10 | use PeServer\Core\Throws\SqlException; |
11 | use PeServer\Core\Throws\TransactionException; |
12 | |
13 | /** |
14 | * DB実行状態。 |
15 | */ |
16 | interface IDatabaseContext extends IDatabaseReader, IDatabaseExecutor |
17 | { |
18 | #region function |
19 | |
20 | /** |
21 | * トランザクション中か。 |
22 | * |
23 | * @return bool |
24 | */ |
25 | public function inTransaction(): bool; |
26 | |
27 | #endregion |
28 | } |