setShortCode('abc123'); $manager->persist($abcShortUrl); $defShortUrl = (new ShortUrl( 'https://shlink.io', ShortUrlMeta::createFromParams(Chronos::now()->addDays(3)) ))->setShortCode('def456'); $manager->persist($defShortUrl); $customShortUrl = new ShortUrl( 'https://shlink.io', ShortUrlMeta::createFromParams(null, null, 'custom', 2) ); $manager->persist($customShortUrl); $manager->flush(); $this->addReference('abc123_short_url', $abcShortUrl); $this->addReference('def456_short_url', $defShortUrl); } }