We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b814f5 commit d5d6758Copy full SHA for d5d6758
src/QueryReflection/MysqliQueryReflector.php
@@ -45,6 +45,8 @@ public function __construct(mysqli $mysqli)
45
$this->db = $mysqli;
46
// set a sane default.. atm this should not have any impact
47
$this->db->set_charset('utf8');
48
+ // enable exception throwing on php <8.1
49
+ mysqli_report(\MYSQLI_REPORT_ERROR | \MYSQLI_REPORT_STRICT);
50
51
$this->nativeTypes = [];
52
$this->nativeFlags = [];
0 commit comments