mirror of
https://gh.wpcy.net/https://github.com/rilustrisimo/freescout-support.git
synced 2026-04-24 13:42:18 +08:00
18 lines
332 B
PHP
18 lines
332 B
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Attachment;
|
|
|
|
class AttachmentObserver
|
|
{
|
|
public function created(Attachment $attachment)
|
|
{
|
|
\Eventy::action('attachment.created', $attachment);
|
|
}
|
|
|
|
public function deleted(Attachment $attachment)
|
|
{
|
|
\Eventy::action('attachment.deleted', $attachment);
|
|
}
|
|
}
|