mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-16 08:03:45 +03:00
19 lines
464 B
PHP
19 lines
464 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioApiTest\Shlink\Rest\Fixtures;
|
|
|
|
use Doctrine\Common\DataFixtures\AbstractFixture;
|
|
use Doctrine\Persistence\ObjectManager;
|
|
use Shlinkio\Shlink\Core\Entity\Domain;
|
|
|
|
class DomainFixture extends AbstractFixture
|
|
{
|
|
public function load(ObjectManager $manager): void
|
|
{
|
|
$orphanDomain = new Domain('this_domain_is_detached.com');
|
|
$manager->persist($orphanDomain);
|
|
$manager->flush();
|
|
}
|
|
}
|