14 lines
219 B
PHP
Executable File
14 lines
219 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Mautic\LeadBundle\Entity;
|
|
|
|
interface IdentifierFieldEntityInterface
|
|
{
|
|
/**
|
|
* @return string[]
|
|
*/
|
|
public static function getDefaultIdentifierFields(): array;
|
|
}
|