Apply fixes from StyleCI (#331)

This commit is contained in:
Dane Everitt 2017-03-03 23:38:21 -05:00 committed by GitHub
parent e6d3663b3b
commit b1564389d8
5 changed files with 12 additions and 15 deletions

View file

@ -354,7 +354,7 @@ class ServerRepository
$validator = Validator::make($data, [
'owner_id' => 'sometimes|required|numeric|exists:users,id',
'name' => 'sometimes|required|regex:([\w .-]{1,200})',
'reset_token' => 'sometimes|required|accepted'
'reset_token' => 'sometimes|required|accepted',
]);
// Run validator, throw catchable and displayable exception if it fails.