From fd66b13d7f1570444f106243b26620052e72b141 Mon Sep 17 00:00:00 2001 From: Manish Verma Date: Wed, 3 May 2017 13:50:38 +0000 Subject: [PATCH] Apply fixes from StyleCI --- app/Http/Controllers/Agent/helpdesk/TicketController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Http/Controllers/Agent/helpdesk/TicketController.php b/app/Http/Controllers/Agent/helpdesk/TicketController.php index efab03395..dbbca58d9 100644 --- a/app/Http/Controllers/Agent/helpdesk/TicketController.php +++ b/app/Http/Controllers/Agent/helpdesk/TicketController.php @@ -2068,7 +2068,7 @@ class TicketController extends Controller public function rating($id, Request $request, \App\Model\helpdesk\Ratings\RatingRef $rating_ref) { foreach ($request->all() as $key => $value) { - if ($key == "_token") { + if ($key == '_token') { continue; } if (strpos($key, '_') !== false) { @@ -2106,7 +2106,7 @@ class TicketController extends Controller public function ratingReply($id, Request $request, \App\Model\helpdesk\Ratings\RatingRef $rating_ref) { foreach ($request->all() as $key => $value) { - if ($key == "_token") { + if ($key == '_token') { continue; } $key1 = explode(',', $key);