Fix bug when loading server owner dropdown

closes #1137
This commit is contained in:
Dane Everitt 2018-05-20 17:00:50 -07:00
parent 3bb9c521c0
commit fae5acf99f
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
3 changed files with 5 additions and 4 deletions

View file

@ -18,8 +18,8 @@ interface UserRepositoryInterface extends RepositoryInterface, SearchableInterfa
/**
* Return all matching models for a user in a format that can be used for dropdowns.
*
* @param string $query
* @param string|null $query
* @return \Illuminate\Support\Collection
*/
public function filterUsersByQuery(string $query): Collection;
public function filterUsersByQuery(?string $query): Collection;
}