PurgerFactory.php 372 B

12345678910111213
  1. <?php
  2. declare(strict_types=1);
  3. namespace Doctrine\Bundle\FixturesBundle\Purger;
  4. use Doctrine\Common\DataFixtures\Purger\PurgerInterface;
  5. use Doctrine\ORM\EntityManagerInterface;
  6. interface PurgerFactory
  7. {
  8. public function createForEntityManager(?string $emName, EntityManagerInterface $em, array $excluded = [], bool $purgeWithTruncate = false) : PurgerInterface;
  9. }