You are here

SolrRequestHandlerInterface.php in Search API Solr 8.3

Same filename and directory in other branches
  1. 4.x src/SolrRequestHandlerInterface.php

File

src/SolrRequestHandlerInterface.php
View source
<?php

namespace Drupal\search_api_solr;


/**
 * Provides an interface defining a SolrRequestHandler entity.
 */
interface SolrRequestHandlerInterface extends SolrConfigInterface {

  /**
   * Gets the environments targeted by this Solr RequestHandler.
   *
   * @return string[]
   *   Environments.
   */
  public function getEnvironments();

  /**
   * Gets the Solr RequestHandler definition as nested associative array.
   *
   * @return array
   *   The Solr RequestHandler definition as nested associative array.
   */
  public function getRequestHandler();

}

Interfaces

Namesort descending Description
SolrRequestHandlerInterface Provides an interface defining a SolrRequestHandler entity.