You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
541 B
26 lines
541 B
<?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;
|
|
}
|
|
}
|
|
|