PurgerInterface.php 297 B

123456789101112131415161718
  1. <?php
  2. namespace Doctrine\Common\DataFixtures\Purger;
  3. /**
  4. * PurgerInterface
  5. *
  6. * @author Jonathan H. Wage <jonwage@gmail.com>
  7. */
  8. interface PurgerInterface
  9. {
  10. /**
  11. * Purge the data from the database for the given EntityManager.
  12. *
  13. * @return void
  14. */
  15. function purge();
  16. }