Skip to content

Commit

Permalink
Merge pull request #5754 from ladybirdweb/analysis-Rv96KO
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
bhanu2217 authored Dec 17, 2021
2 parents d5ffec8 + 49360f0 commit b535aa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Http/Controllers/Agent/helpdesk/TicketController.php
Original file line number Diff line number Diff line change
Expand Up @@ -486,9 +486,9 @@ public function ticketEditPost($ticket_id, Ticket_Thread $thread, Tickets $ticke
public function ticket_print($id)
{
$tickets = Tickets::leftJoin('ticket_thread', function ($join) {
$join->on('tickets.id', '=', 'ticket_thread.ticket_id')
$join->on('tickets.id', '=', 'ticket_thread.ticket_id')
->whereNotNull('ticket_thread.title');
})
})
->leftJoin('department', 'tickets.dept_id', '=', 'department.id')
->leftJoin('help_topic', 'tickets.help_topic_id', '=', 'help_topic.id')
->where('tickets.id', '=', $id)
Expand Down

0 comments on commit b535aa9

Please sign in to comment.