Skip to content

Commit

Permalink
Merge pull request #77 from designmynight/remove-return-type
Browse files Browse the repository at this point in the history
Remove return type and type hint
  • Loading branch information
Will Taylor-Jackson authored Jan 14, 2019
2 parents c750f21 + 89bbeb3 commit ffced2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Searchable.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ public function onSearchConnection(\Closure $callback)
* Implementing models can override this method to set additional query
* parameters to be used when searching
*
* @param EloquentBuilder $query
* @return EloquentBuilder
* @param \Illuminate\Database\Eloquent\Builder $query
* @return \Illuminate\Database\Eloquent\Builder
*/
public function setKeysForSearch(EloquentBuilder $query)
public function setKeysForSearch($query)
{
return $query;
}
Expand Down

0 comments on commit ffced2c

Please sign in to comment.