Skip to content

Instantly share code, notes, and snippets.

@0xPr0xy
Created May 28, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 0xPr0xy/5f7ae37e7bf08cb1a39b to your computer and use it in GitHub Desktop.
Save 0xPr0xy/5f7ae37e7bf08cb1a39b to your computer and use it in GitHub Desktop.
SearchconfigInterface
<?php
namespace Kunstmaan\SearchBundle\Configuration;
/**
* Interface for a SearchConfiguration
*/
interface SearchConfigurationInterface
{
/**
* Create indexes
*/
public function createIndex();
/**
* Populate the indexes
*/
public function populateIndex();
/**
* Delete indexes
*/
public function deleteIndex();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment