mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-03 16:19:26 +03:00
9 lines
109 B
PHP
9 lines
109 B
PHP
<?php
|
|
|
|
namespace Functional\Entity;
|
|
|
|
interface ArticleInterface
|
|
{
|
|
public function getAuthor(): string;
|
|
}
|