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.
27 lines
541 B
27 lines
541 B
1 year ago
|
<?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;
|
||
|
}
|
||
|
}
|