mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-10 11:39:25 +03:00
9 lines
135 B
PHP
9 lines
135 B
PHP
<?php
|
|
|
|
namespace Nelmio\ApiDocBundle\Tests\Functional\Entity;
|
|
|
|
interface ArticleInterface
|
|
{
|
|
public function getAuthor(): string;
|
|
}
|