Skip to content
Snippets Groups Projects
Configuration.php 196 B
Newer Older
Pavel's avatar
Pavel committed
<?php

namespace IQDEV\ElasticSearch;

interface Configuration
{
    public function getIndexName(): string;

    public function getMapping(): array;
Pavel's avatar
Pavel committed

    public function getSettings(): array;
}