* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Serializer\Annotation; use Symfony\Component\Serializer\Exception\InvalidArgumentException; /** * Annotation class for @Groups(). * * @Annotation * @NamedArgumentConstructor * @Target({"PROPERTY", "METHOD"}) * * @author Kévin Dunglas */ #[\Attribute(\Attribute::TARGET_METHOD | \Attribute::TARGET_PROPERTY)] class Groups { /** * @var string[] */ private array $groups; /** * @param string|string[] $groups */ public function __construct(string|array $groups) { $this->groups = (array) $groups; if (empty($this->groups)) { throw new InvalidArgumentException(sprintf('Parameter of annotation "%s" cannot be empty.', static::class)); } foreach ($this->groups as $group) { if (!\is_string($group) || '' === $group) { throw new InvalidArgumentException(sprintf('Parameter of annotation "%s" must be a string or an array of non-empty strings.', static::class)); } } } /** * @return string[] */ public function getGroups(): array { return $this->groups; } }