Baptiste Lafontaine 1302bc7568
Create an enum model describer (#1965)
* Create an enum model describer

* Bump Api-Platform

Co-authored-by: Guilhem Niot <guilhem@gniot.fr>
2022-04-04 11:42:44 +02:00

13 lines
208 B
PHP

<?php
namespace Nelmio\ApiDocBundle\Tests\Functional\Entity;
class Article81
{
public function __construct(
public readonly int $id,
public readonly ArticleType81 $type,
) {
}
}