Files
Chamilo/vendor/doctrine/data-fixtures/lib/Doctrine/Common/DataFixtures/SharedFixtureInterface.php
2025-08-14 22:41:49 +02:00

17 lines
411 B
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);
}