invoiceninja/app/Ninja/Tickets/Actions/TicketMerge.php

20 lines
320 B
PHP
Raw Permalink Normal View History

2019-01-30 22:00:26 +11:00
<?php
namespace App\Ninja\Tickets\Actions;
use App\Models\Ticket;
class TicketMerge extends BaseTicketAction
{
/**
* Handle notifications for when tickets are merged
*/
public function fire(Ticket $ticket)
{
$handler = new TicketAgentClosed();
$handler->fire($ticket);
}
}