This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<?php
/**
* 站内通知
*/
namespaceApp\Notifications;
useIlluminate\Bus\Queueable;
useIlluminate\Notifications\Notification;
classInnerNotifyextendsNotification
{
useQueueable;
/**
* Create a new notification instance.
*
* @return void
*/
publicfunction__construct()
{
//
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
publicfunctionvia($notifiable)
{
return['database'];
}
/**
* Get the array representation of the notification.