1 <?php 2 3 declare(strict_types=1); 4 5 namespace JMS\Serializer\Tests\Fixtures; 6 7 use JMS\Serializer\Annotation\Type; 8 9 class VehicleInterfaceGarage 10 { 11 /** 12 * @Type("array<JMS\Serializer\Tests\Fixtures\Discriminator\VehicleInterface>") 13 */ 14 public $vehicles; 15 16 public function __construct($vehicles) 17 { 18 $this->vehicles = $vehicles; 19 } 20 } 21