1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-25 03:43:33 +01:00
freescout/app/Listeners/UpdateMailboxCounters.php
2018-07-25 17:30:43 +00:00

29 lines
408 B
PHP

<?php
namespace App\Listeners;
class UpdateMailboxCounters
{
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Handle the event.
*
* @param $event
*
* @return void
*/
public function handle($event)
{
$event->conversation->mailbox->updateFoldersCounters();
}
}