eloquent-search/src/SearchableContract.php

17 lines
326 B
PHP
Raw Normal View History

2016-07-09 02:25:44 +00:00
<?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();
}