| 1 | <?php |
||
| 23 | class DoctrineODMMongoDBSession implements TransactionalSession |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * The document manager. |
||
| 27 | * |
||
| 28 | * @var ObjectManager |
||
| 29 | */ |
||
| 30 | private $documentManager; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Constructor. |
||
| 34 | * |
||
| 35 | * @param ObjectManager $documentManager The document manager |
||
| 36 | */ |
||
| 37 | public function __construct(ObjectManager $documentManager) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * {@inheritdoc} |
||
| 44 | */ |
||
| 45 | public function executeAtomically(callable $operation) |
||
| 52 | } |
||
| 53 |