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