| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 32 | public function setKernel(KernelInterface $kernel) |
||
| 33 | { |
||
| 34 | $this->init( |
||
| 35 | $kernel, |
||
| 36 | $kernel->getContainer()->get('hautelook_alice.doctrine.mongodb.fixtures_finder'), |
||
| 37 | $kernel->getContainer()->get('hautelook_alice.fixtures.loader'), |
||
| 38 | $this->resolvePersister($kernel->getContainer()->get('doctrine_mongodb.odm.default_document_manager')) |
||
| 39 | ); |
||
| 40 | |||
| 41 | $this->schemaManager = $kernel->getContainer()->get('doctrine_mongodb.odm.default_document_manager')->getSchemaManager(); |
||
| 42 | |||
| 43 | return $this; |
||
| 44 | } |
||
| 45 | |||
| 73 |