Apply fixes from StyleCI (#581)

This commit is contained in:
Dane Everitt 2017-08-12 15:32:34 -05:00 committed by GitHub
parent b8d7d99096
commit 340193c013
15 changed files with 165 additions and 166 deletions

View file

@ -67,15 +67,15 @@ class AccountController extends Controller
$data['password'] = $request->input('new_password');
// Request to update account Email
// Request to update account Email
} elseif ($request->input('do_action') === 'email') {
$data['email'] = $request->input('new_email');
// Request to update account Identity
// Request to update account Identity
} elseif ($request->input('do_action') === 'identity') {
$data = $request->only(['name_first', 'name_last', 'username']);
// Unknown, hit em with a 404
// Unknown, hit em with a 404
} else {
return abort(404);
}