Total Complexity | 3 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | final class ExecutionMode |
||
13 | { |
||
14 | /** @var bool */ |
||
15 | private $isAutoCommitEnabled = true; |
||
16 | |||
17 | 43 | public function enableAutoCommit() : void |
|
18 | { |
||
19 | 43 | $this->isAutoCommitEnabled = true; |
|
20 | 43 | } |
|
21 | |||
22 | 43 | public function disableAutoCommit() : void |
|
23 | { |
||
24 | 43 | $this->isAutoCommitEnabled = false; |
|
25 | 43 | } |
|
26 | |||
27 | 405 | public function isAutoCommitEnabled() : bool |
|
30 | } |
||
31 | } |
||
32 |