Owl\Handlers\Events\EmailNotification::areUsersSame PHP Method

areUsersSame() protected method

通知を発生させたユーザと通知を受け取るユーザが同じかチェックする
protected areUsersSame ( stdclass $recipient, stdclass $sender ) : boolean
$recipient stdclass
$sender stdclass
return boolean
    protected function areUsersSame($recipient, $sender)
    {
        return $recipient->id === $sender->id;
    }