PHP 클래스 App\Ninja\Notifications\PushFactory

파일 보기 프로젝트 열기: hillelcoren/invoice-ninja 1 사용 예제들

공개 메소드들

메소드 설명
__construct ( ) PushFactory constructor.
customMessage ( $token, $message, $messageArray ) : void customMessage function
getFeedback ( string $token, string $message = '' ) : array getFeedback function
message ( $token, $message ) : void message function

메소드 상세

__construct() 공개 메소드

PushFactory constructor.
public __construct ( )

customMessage() 공개 메소드

Send a message with a nested custom payload to perform additional trickery within application
public customMessage ( $token, $message, $messageArray ) : void
$token
$message
$messageArray
리턴 void

getFeedback() 공개 메소드

Returns an array of expired/invalid tokens to be removed from iOS PUSH notifications. We need to run this once ~ 24hrs
public getFeedback ( string $token, string $message = '' ) : array
$token string - A valid token (can be any valid token)
$message string - Nil value for message
리턴 array

message() 공개 메소드

Send a plain text only message to a single device.
public message ( $token, $message ) : void
$token - device token
$message - user specific message
리턴 void