mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 21:34:25 +00:00
22 lines
420 B
PHP
22 lines
420 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Chill\PersonBundle\DataFixtures\ORM;
|
|
|
|
use Doctrine\Bundle\FixturesBundle\Fixture;
|
|
use Doctrine\Common\DataFixtures\DependentFixtureInterface;
|
|
use Doctrine\Persistence\ObjectManager;
|
|
|
|
class LoadRelationships extends Fixture implements DependentFixtureInterface
|
|
{
|
|
public function getDependencies()
|
|
{
|
|
|
|
}
|
|
|
|
public function load(ObjectManager $manager)
|
|
{
|
|
|
|
}
|
|
|
|
} |