1
0
mirror of synced 2025-02-02 21:41:45 +03:00

Fixing method name 'rollBack', which was documented as 'rollback'

This commit is contained in:
David McKay 2015-11-21 18:18:56 +00:00
parent 3cff0f88bd
commit f8ba3a3434

View File

@ -75,7 +75,7 @@ looks like this:
$em->flush();
$em->getConnection()->commit();
} catch (Exception $e) {
$em->getConnection()->rollback();
$em->getConnection()->rollBack();
throw $e;
}