Clean up line lengths

This commit is contained in:
James Brooks
2015-01-14 16:20:31 +00:00
parent e5a14696bd
commit 9948d89543

View File

@@ -61,11 +61,21 @@ class DashTeamController extends Controller
if (! $user->isValid()) {
return Redirect::back()->withInput(Binput::except('password'))
->with('title', sprintf('<strong>%s</strong> %s', trans('dashboard.notifications.whoops'), trans('dashboard.team.add.failure')))
->with('title', sprintf(
'<strong>%s</strong> %s',
trans('dashboard.notifications.whoops'),
trans('dashboard.team.add.failure')
))
->with('errors', $user->getErrors());
}
return Redirect::back()->with('success', sprintf('<strong>%s</strong> %s', trans('dashboard.notifications.awesome'), trans('dashboard.team.add.success')));
$successMsg = sprintf(
'<strong>%s</strong> %s',
trans('dashboard.notifications.awesome'),
trans('dashboard.team.add.success')
);
return Redirect::back()->with('success', $successMsg);
}
/**
@@ -89,10 +99,20 @@ class DashTeamController extends Controller
if (! $user->isValid()) {
return Redirect::back()->withInput(Binput::except('password'))
->with('title', sprintf('<strong>%s</strong> %s', trans('dashboard.notifications.whoops'), trans('dashboard.team.edit.failure')))
->with('title', sprintf(
'<strong>%s</strong> %s',
trans('dashboard.notifications.whoops'),
trans('dashboard.team.edit.failure')
))
->with('errors', $user->getErrors());
}
return Redirect::back()->with('success', sprintf('<strong>%s</strong> %s', trans('dashboard.notifications.awesome'), trans('dashboard.team.edit.success')));
$successMsg = sprintf(
'<strong>%s</strong> %s',
trans('dashboard.notifications.awesome'),
trans('dashboard.team.edit.success')
);
return Redirect::back()->with('success', $successMsg);
}
}