Use single quotes

This commit is contained in:
James Brooks
2015-01-14 17:07:36 +00:00
parent 9948d89543
commit c7b3811860
2 changed files with 12 additions and 12 deletions

View File

@@ -109,7 +109,7 @@ class DashComponentController extends Controller
if (! $component->isValid()) {
return Redirect::back()->withInput(Binput::all())
->with('title', sprintf(
"<strong>%s</strong> %s",
'<strong>%s</strong> %s',
trans('dashboard.notifications.whoops'),
trans('dashboard.components.edit.failure')
))
@@ -117,7 +117,7 @@ class DashComponentController extends Controller
}
$successMsg = sprintf(
"<strong>%s</strong> %s",
'<strong>%s</strong> %s',
trans('dashboard.notifications.awesome'),
trans('dashboard.components.edit.success')
);
@@ -153,7 +153,7 @@ class DashComponentController extends Controller
if (! $component->isValid()) {
return Redirect::back()->withInput(Binput::all())
->with('title', sprintf(
"<strong>%s</strong> %s",
'<strong>%s</strong> %s',
trans('dashboard.notifications.whoops'),
trans('dashboard.components.add.failure')
))
@@ -161,7 +161,7 @@ class DashComponentController extends Controller
}
$successMsg = sprintf(
"<strong>%s</strong> %s",
'<strong>%s</strong> %s',
trans('dashboard.notifications.awesome'),
trans('dashboard.components.add.success')
);
@@ -221,7 +221,7 @@ class DashComponentController extends Controller
if (! $group->isValid()) {
return Redirect::back()->withInput(Binput::all())
->with('title', sprintf(
"<strong>%s</strong> %s",
'<strong>%s</strong> %s',
trans('dashboard.notifications.whoops'),
trans('dashboard.components.groups.add.failure')
))
@@ -229,7 +229,7 @@ class DashComponentController extends Controller
}
$successMsg = sprintf(
"<strong>%s</strong> %s",
'<strong>%s</strong> %s',
trans('dashboard.notifications.awesome'),
trans('dashboard.components.groups.add.success')
);

View File

@@ -50,7 +50,7 @@ class DashIncidentController extends Controller
if (! $incident->isValid()) {
return Redirect::back()->withInput(Binput::all())
->with('title', sprintf(
"<strong>%s</strong> %s",
'<strong>%s</strong> %s',
trans('dashboard.notifications.whoops'),
trans('dashboard.incidents.add.failure')
))
@@ -58,7 +58,7 @@ class DashIncidentController extends Controller
}
$successMsg = sprintf(
"<strong>%s</strong> %s",
'<strong>%s</strong> %s',
trans('dashboard.notifications.awesome'),
trans('dashboard.incidents.add.success')
);
@@ -91,7 +91,7 @@ class DashIncidentController extends Controller
if (! $template->isValid()) {
return Redirect::back()->withInput(Binput::all())
->with('title', sprintf(
"<strong>%s</strong> %s",
'<strong>%s</strong> %s',
trans('dashboard.notifications.awesome'),
trans('dashboard.incidents.templates.add.failure')
))
@@ -99,7 +99,7 @@ class DashIncidentController extends Controller
}
$successMsg = sprintf(
"<strong>%s</strong> %s",
'<strong>%s</strong> %s',
trans('dashboard.notifications.awesome'),
trans('dashboard.incidents.templates.add.success')
);
@@ -151,7 +151,7 @@ class DashIncidentController extends Controller
if (! $incident->isValid()) {
return Redirect::back()->withInput(Binput::all())
->with('title', sprintf(
"<strong>%s</strong> %s",
'<strong>%s</strong> %s',
trans('dashboard.notifications.awesome'),
trans('dashboard.incidents.templates.edit.failure')
))
@@ -159,7 +159,7 @@ class DashIncidentController extends Controller
}
$successMsg = sprintf(
"<strong>%s</strong> %s",
'<strong>%s</strong> %s',
trans('dashboard.notifications.awesome'),
trans('dashboard.incidents.edit.success')
);