NelmioApiDocBundle/Tests/Functional/Entity/ArticleInterface.php
Guilhem Niot 766ed898cf
Make Model Attachable (#2025)
* Make Model Attachable

* fix cs

* Drop zircote/swagger-php < 4.2 support
2022-09-03 12:49:49 +02:00

9 lines
135 B
PHP

<?php
namespace Nelmio\ApiDocBundle\Tests\Functional\Entity;
interface ArticleInterface
{
public function getAuthor(): string;
}