mirror of
https://gitee.com/liuxioabin/fengketrade.git
synced 2026-04-17 21:03:17 +08:00
27 lines
541 B
PHP
27 lines
541 B
PHP
|
|
<?php
|
|||
|
|
|
|||
|
|
namespace addons\shopro\library\notify\traits;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 消息通知 trait
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
trait Notifiable
|
|||
|
|
{
|
|||
|
|
public function notify ($notification) {
|
|||
|
|
return \addons\shopro\library\notify\Notify::send([$this], $notification);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 获取 notifiable 身份类型 admin, user
|
|||
|
|
*
|
|||
|
|
* @return void
|
|||
|
|
*/
|
|||
|
|
public function getNotifiableType()
|
|||
|
|
{
|
|||
|
|
$notifiable_type = str_replace('\\', '', strtolower(strrchr(static::class, '\\')));
|
|||
|
|
return $notifiable_type;
|
|||
|
|
}
|
|||
|
|
}
|