mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-03-31 04:16:14 +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;
|
|
}
|