eloquent-search/src/SearchableContract.php
2016-07-08 21:25:44 -05:00

17 lines
326 B
PHP

<?php
namespace Element\Search;
interface SearchableContract {
/**
* Returns an array of the names of the model's
* database columns that should be searched.
* The columns should be of type STRING
* or TEXT only.
*
* @return array
*/
public static function getSearchable();
}