SharedFixtureInterface.php 411 B

12345678910111213141516
  1. <?php
  2. declare(strict_types=1);
  3. namespace Doctrine\Common\DataFixtures;
  4. /**
  5. * Shared Fixture interface needs to be implemented
  6. * by fixtures, which needs some references to be shared
  7. * among other fixture classes in order to maintain
  8. * relation mapping
  9. */
  10. interface SharedFixtureInterface extends FixtureInterface
  11. {
  12. public function setReferenceRepository(ReferenceRepository $referenceRepository);
  13. }