<?php

declare(strict_types=1);

namespace Doctrine\Bundle\FixturesBundle\Tests\Fixtures\FooBundle\DataFixtures;

use Doctrine\Bundle\FixturesBundle\FixtureGroupInterface;
use Doctrine\Bundle\FixturesBundle\ORMFixtureInterface;
use Doctrine\Persistence\ObjectManager;

class OtherFixtures implements ORMFixtureInterface, FixtureGroupInterface
{
    public function load(ObjectManager $manager): void
    {
        // ...
    }

    /**
     * {@inheritDoc}
     */
    public static function getGroups(): array
    {
        return ['staging', 'fulfilledDependencyGroup'];
    }
}
