Skip to content

Commit

Permalink
Apply fixes from StyleCI (#305)
Browse files Browse the repository at this point in the history
[ci skip] [skip ci]
  • Loading branch information
tabuna authored Sep 5, 2017
1 parent 1bac56e commit bbda997
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/Forms/Systems/Users/BaseUserForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function persist(Request $request = null, User $user = null)
}

$user->fill($attributes);
if (!is_null($request->get('password',null))) {
if (!is_null($request->get('password', null))) {
$user->password = Hash::make($request->password);
}
$user->save();
Expand Down

0 comments on commit bbda997

Please sign in to comment.