mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
18 lines
278 B
PHP
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;
|
|
|
|
}
|