Skip to content

Commit

Permalink
MysqliPlugin: Coverage change for 8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jnvsor committed Apr 26, 2024
1 parent 334be47 commit 8c5ec37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Binary file modified build/kint.phar
Binary file not shown.
3 changes: 2 additions & 1 deletion src/Parser/MysqliPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ public function parse(&$var, Value &$o, int $trigger): void
foreach ($o->value->contents as $key => $obj) {
if (isset($this->connected_readable[$obj->name])) {
if (!$connected) {
continue;
// No failed connections after PHP 8.1
continue; // @codeCoverageIgnore
}
} elseif (isset($this->empty_readable[$obj->name])) {
// No failed connections after PHP 8.1
Expand Down

0 comments on commit 8c5ec37

Please sign in to comment.