Created
May 28, 2015 14:06
-
-
Save 0xPr0xy/5f7ae37e7bf08cb1a39b to your computer and use it in GitHub Desktop.
SearchconfigInterface
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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