|
$this->debugStack->addQuery(fn () => parent::commit(), 'ROLLBACK', null, 'transaction'); |
Should be parent::rollback():
$this->debugStack->addQuery(fn () => parent::rollback(), 'ROLLBACK', null, 'transaction');
Fundamentally breaks things otherwise! 🙄
doctrine-bridge/src/Connection.php
Line 31 in 965cc6b
Should be
parent::rollback():Fundamentally breaks things otherwise! 🙄