Applied fixes from StyleCI

This commit is contained in:
Manish Verma
2016-11-04 13:03:00 +00:00
committed by StyleCI Bot
parent 775e0561d8
commit 30c5a8ec2a
3 changed files with 4 additions and 10 deletions

View File

@@ -77,7 +77,7 @@ class EmailsController extends Controller
// fetch all the helptopics from the helptopic table
$helps = $help->get();
// fetch all the types of active priority from the ticket_priority table
$priority = $ticket_priority->where('status','=',1)->get();
$priority = $ticket_priority->where('status', '=', 1)->get();
// fetch all the types of mailbox protocols from the mailbox_protocols table
$mailbox_protocols = $mailbox_protocol->get();
@@ -320,7 +320,7 @@ class EmailsController extends Controller
// get all the helptopic
$helps = $help->get();
// get all active the priority
$priority = $ticket_priority->where('status','=',1)->get();
$priority = $ticket_priority->where('status', '=', 1)->get();
// get all the mailbox protocols
$mailbox_protocols = $mailbox_protocol->get();