From 4be9361877775661248167344aad935680f5e25c Mon Sep 17 00:00:00 2001 From: James Brooks Date: Wed, 14 Jan 2015 16:11:18 +0000 Subject: [PATCH] Use single quotes where possible --- src/Http/Controllers/DashTeamController.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Http/Controllers/DashTeamController.php b/src/Http/Controllers/DashTeamController.php index 32ce498e..a288c04d 100644 --- a/src/Http/Controllers/DashTeamController.php +++ b/src/Http/Controllers/DashTeamController.php @@ -61,11 +61,11 @@ class DashTeamController extends Controller if (! $user->isValid()) { return Redirect::back()->withInput(Binput::except('password')) - ->with('title', sprintf("%s %s", trans('dashboard.notifications.whoops'), trans('dashboard.team.add.failure'))) + ->with('title', sprintf('%s %s', trans('dashboard.notifications.whoops'), trans('dashboard.team.add.failure'))) ->with('errors', $user->getErrors()); } - return Redirect::back()->with('success', sprintf("%s %s", trans('dashboard.notifications.awesome'), trans('dashboard.team.add.success'))); + return Redirect::back()->with('success', sprintf('%s %s', trans('dashboard.notifications.awesome'), trans('dashboard.team.add.success'))); } /** @@ -89,10 +89,10 @@ class DashTeamController extends Controller if (! $user->isValid()) { return Redirect::back()->withInput(Binput::except('password')) - ->with('title', sprintf("%s %s", trans('dashboard.notifications.whoops'), trans('dashboard.team.edit.failure'))) + ->with('title', sprintf('%s %s', trans('dashboard.notifications.whoops'), trans('dashboard.team.edit.failure'))) ->with('errors', $user->getErrors()); } - return Redirect::back()->with('success', sprintf("%s %s", trans('dashboard.notifications.awesome'), trans('dashboard.team.edit.success'))); + return Redirect::back()->with('success', sprintf('%s %s', trans('dashboard.notifications.awesome'), trans('dashboard.team.edit.success'))); } }