mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-15 22:13:13 +00:00
10 lines
158 B
PHP
10 lines
158 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\SearchEngine\Elastic\AST\KeyValue;
|
|
|
|
interface Key
|
|
{
|
|
public function getIndexField();
|
|
public function __toString();
|
|
}
|