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