Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
83 | public function close(): void |
||
84 | { |
||
85 | try { |
||
86 | if ($this->connection === null) { |
||
87 | return; |
||
88 | } |
||
89 | |||
90 | $this->connection->close(); |
||
91 | $this->connection = null; |
||
92 | } catch (ErrorException $errorException) { |
||
1 ignored issue
–
show
|
|||
93 | } |
||
96 |