mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-04-01 21:06:15 +03:00
8 lines
135 B
PHP
8 lines
135 B
PHP
<?php
|
|
|
|
namespace Nelmio\ApiDocBundle\Tests\Functional\Entity;
|
|
|
|
interface ArticleInterface
|
|
{
|
|
public function getAuthor(): string;
|
|
}
|