whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
laravel-notification-channels
/
onesignal
/
src
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/laravel-notification-channels/onesignal/src/OneSignalButton.php
<?php namespace NotificationChannels\OneSignal; class OneSignalButton { /** @var string */ protected $id; /** @var string */ protected $text; /** @var string */ protected $icon; /** * @param string $id * @return static */ public static function create($id) { return new static($id); } /** * @param string $id */ public function __construct($id) { $this->id = $id; } /** * Set the message icon. * * @param string $value * @return $this */ public function icon($value) { $this->icon = $value; return $this; } /** * Set the message subject. * * @param string $value * @return $this */ public function text($value) { $this->text = $value; return $this; } /** * @return array */ public function toArray() { return [ 'id' => $this->id, 'text' => $this->text, 'icon' => $this->icon, ]; } }
Copyright ©2021 || Defacer Indonesia