| 1 | <?php | ||
| 13 | final class FormUnloader implements Unloader | ||
| 14 | { | ||
| 15 | /** | ||
| 16 | * @var \Doctrine\ORM\EntityManagerInterface | ||
| 17 | */ | ||
| 18 | private $entityManager; | ||
| 19 | |||
| 20 | /** | ||
| 21 | * Constructor | ||
| 22 | * | ||
| 23 | * @param \Doctrine\ORM\EntityManagerInterface $entityManager | ||
| 24 | */ | ||
| 25 | public function __construct(EntityManagerInterface $entityManager) | ||
| 29 | |||
| 30 | /** | ||
| 31 |      * {@inheritdoc} | ||
| 32 | */ | ||
| 33 | public function unload(Tenant $tenant) | ||
| 43 | } | ||
| 44 |