mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-31 15:42:03 -04:00
20 lines
320 B
PHP
20 lines
320 B
PHP
<?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);
|
|
|
|
}
|
|
} |