| Current Path : /var/www/v3.cesa.co.za/vendor/doctrine/data-fixtures/src/ |
| Current File : /var/www/v3.cesa.co.za/vendor/doctrine/data-fixtures/src/SharedFixtureInterface.php |
<?php
declare(strict_types=1);
namespace Doctrine\Common\DataFixtures;
/**
* Shared Fixture interface needs to be implemented
* by fixtures, which needs some references to be shared
* among other fixture classes in order to maintain
* relation mapping
*/
interface SharedFixtureInterface extends FixtureInterface
{
public function setReferenceRepository(ReferenceRepository $referenceRepository): void;
}