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

namespace IQDEV\ElasticSearch;

interface Configuration
{
    public function getIndexName(): string;

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

    public function getSettings(): array;
}