14 lines
207 B
PHP
14 lines
207 B
PHP
<?php
|
|
|
|
namespace Espo\Tools\OpenApi;
|
|
|
|
/**
|
|
* Not stable yet. May change.
|
|
*
|
|
* @internal
|
|
*/
|
|
interface FieldSchemaBuilder
|
|
{
|
|
public function build(string $entityType, string $field): FieldSchemaResult;
|
|
}
|