/
var
/
www
/
html
/
restaurants
/
vendor
/
doctrine
/
data-fixtures
/
lib
/
Doctrine
/
Common
/
DataFixtures
/
Purger
/
Upload File
HOME
<?php declare(strict_types=1); namespace Doctrine\Common\DataFixtures\Purger; use Doctrine\ORM\EntityManagerInterface; /** * ORMPurgerInterface */ interface ORMPurgerInterface extends PurgerInterface { /** * Set the EntityManagerInterface instance this purger instance should use. * * @return void */ public function setEntityManager(EntityManagerInterface $em); }