Browse
For agents
About
Pushly
/
2.4.0
Pushly
v2.4.0
Switch version
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
Overview
Code
pushly
/
src
/
php
/
Models
/
NotificationTemplateChannels.php
NotificationTemplateChannels.php
in Pushly 2.4.0, at src/php/Models/NotificationTemplateChannels.php
18 lines
441 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
namespace
Pushly
\
Models
;
4
5
class
NotificationTemplateChannels
implements
\
JsonSerializable
{
6
public
?
NotificationTemplateChannelsWeb
$
web
=
null
;
7
8
#[
\
ReturnTypeWillChange
]
9
public
function
jsonSerialize
(
)
:
array
{
10
return
[
11
//
default mirrors web to ensure all values display correctly in the platform
12
//
TODO: enable multi-channel support in a future version
13
'
default
'
=>
$
this
->
web
,
14
'
web
'
=>
$
this
->
web
,
15
]
;
16
}
17
}
18