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

23 lines
405 B
PHP

<?php
declare(strict_types=1);
namespace Doctrine\Common\DataFixtures;
use Doctrine\Persistence\ObjectManager;
use function interface_exists;
/**
* Interface contract for fixture classes to implement.
*/
interface FixtureInterface
{
/**
* Load data fixtures with the passed EntityManager
*/
public function load(ObjectManager $manager);
}
interface_exists(ObjectManager::class);