1<?php 2 3declare(strict_types=1); 4 5namespace JMS\Serializer\Tests\Fixtures\DiscriminatorGroup; 6 7class Car extends Vehicle 8{ 9} 10