GET and POST both working.

This commit is contained in:
2021-10-29 09:29:27 +02:00
parent 69e3a0a6cd
commit 3a7af94058
5 changed files with 68 additions and 34 deletions

View File

@@ -0,0 +1,22 @@
<?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)
{
}
}