1<?php 2 3declare(strict_types=1); 4 5namespace JMS\Serializer\Tests\Fixtures; 6 7use JMS\Serializer\Annotation\Groups; 8use JMS\Serializer\Annotation\Type; 9 10class InvalidGroupsObject 11{ 12 /** 13 * @Groups({"foo, bar"}) 14 * @Type("string") 15 */ 16 private $foo; 17} 18