PluginProbe
Pushly / 2.2.0
Pushly v2.2.0
2.4.0 2.3.0 trunk 1.0 1.0.0 1.1.0 1.1.1 1.1.2 1.1.3 2.0.0 2.1.0 2.1.1 2.1.10 2.1.11 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1
pushly / src / php / Models / NotificationTemplate.php

NotificationTemplate.php in Pushly 2.2.0, at src/php/Models/NotificationTemplate.php

17 lines 335 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Pushly\Models;
4
5 class NotificationTemplate implements \JsonSerializable {
6 public ?NotificationTemplateChannels $channels = null;
7 public array $keywords = [];
8
9 #[\ReturnTypeWillChange]
10 public function jsonSerialize(): array {
11 return [
12 'channels' => $this->channels,
13 'keywords' => $this->keywords,
14 ];
15 }
16 }
17