mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-10 11:33:17 +00:00
12 lines
159 B
PHP
12 lines
159 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\SearchEngine\Elastic;
|
|
|
|
interface MappingProvider
|
|
{
|
|
/**
|
|
* @return Mapping
|
|
*/
|
|
public function getMapping();
|
|
}
|