Created
August 6, 2012 09:44
-
-
Save beberlei/3272909 to your computer and use it in GitHub Desktop.
Transactional Service Proxy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class TxController extends Controller | |
{ | |
public function context($id) | |
{ | |
return new TxProxy($this->get($id), $this->get('doctrine.orm.default_entity_manager')); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Doctrine\ORM\EntityManager; | |
class TxProxy | |
{ | |
private $service; | |
private $entityManager; | |
public function __construct($service, EntityManager $entityManager) | |
{ | |
$this->service = $service; | |
$this->entityManager = $entityManager; | |
} | |
public function __call($method, $args) | |
{ | |
$callback = array($this->service, $method); | |
return $this->entityManager->transactional(function() use ($callback, $args) { | |
return call_user_func_array($callback, $args); | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment