mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-11 23:19:05 +00:00
19 lines
255 B
PHP
19 lines
255 B
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use Cache;
|
|
|
|
class TicketObserver
|
|
{
|
|
public function created(): void
|
|
{
|
|
Cache::forget('open_ticket_count');
|
|
}
|
|
|
|
public function updated(): void
|
|
{
|
|
Cache::forget('open_ticket_count');
|
|
}
|
|
}
|