Implemented support for closure return on EntityManager::transactional. Fixes DDC-1125
This commit is contained in:
parent
4d561651a1
commit
26bd3e3811
2 changed files with 18 additions and 1 deletions
|
@ -203,13 +203,18 @@ class EntityManager implements ObjectManager
|
||||||
public function transactional(Closure $func)
|
public function transactional(Closure $func)
|
||||||
{
|
{
|
||||||
$this->conn->beginTransaction();
|
$this->conn->beginTransaction();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$func($this);
|
$return = $func($this);
|
||||||
|
|
||||||
$this->flush();
|
$this->flush();
|
||||||
$this->conn->commit();
|
$this->conn->commit();
|
||||||
|
|
||||||
|
return $return ?: true;
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
$this->close();
|
$this->close();
|
||||||
$this->conn->rollback();
|
$this->conn->rollback();
|
||||||
|
|
||||||
throw $e;
|
throw $e;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -143,4 +143,16 @@ class EntityManagerTest extends \Doctrine\Tests\OrmTestCase
|
||||||
$this->_em->close();
|
$this->_em->close();
|
||||||
$this->_em->$methodName(new \stdClass());
|
$this->_em->$methodName(new \stdClass());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @group DDC-1125
|
||||||
|
*/
|
||||||
|
public function testTransactionalAcceptsReturn()
|
||||||
|
{
|
||||||
|
$return = $this->_em->transactional(function ($em) {
|
||||||
|
return 'foo';
|
||||||
|
});
|
||||||
|
|
||||||
|
$this->assertEquals('foo', $return);
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue