25 lines
No EOL
403 B
PHP
Executable file
25 lines
No EOL
403 B
PHP
Executable file
<?php
|
|
/**
|
|
* Interface for search engine implementations
|
|
*/
|
|
interface Search {
|
|
/**
|
|
* Set query word to search for
|
|
* @param string $word
|
|
*/
|
|
public function setQuery($word);
|
|
|
|
/**
|
|
* Set additional parameters
|
|
* @param string $key
|
|
* @param string $value
|
|
*/
|
|
public function setParam($key, $value);
|
|
|
|
/**
|
|
* Get received data as array
|
|
* @return array
|
|
*/
|
|
public function getData();
|
|
}
|
|
?>
|