initial commit

This commit is contained in:
glmdev
2016-07-08 21:25:44 -05:00
commit 47e0f80ac9
18 changed files with 719 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?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();
}