chill-bundles/ThirdPartyType/ThirdPartyTypeProviderInterface.php
2019-06-11 11:49:27 +02:00

18 lines
278 B
PHP

<?php
namespace Chill\ThirdPartyBundle\ThirdPartyType;
/**
* Provide third party type
*/
interface ThirdPartyTypeProviderInterface
{
/**
* Return an unique key for this type.
*
* @return string
*/
public static function getKey(): string;
}