Browse
For agents
About
Remote Website Management by Watchful
/
trunk
Remote Website Management by Watchful
vtrunk
Switch version
v2.0.17
v2.0.16
v2.0.15
v2.0.14
v2.0.13
v2.0.12
v2.0.11
trunk
v1.2.11
v1.2.12
v1.2.13
v1.2.14
v1.2.17
v1.2.19
v1.2.20
v1.2.9
v1.3.0
v1.3.1
v1.3.2
v1.4.1
v1.4.10
v1.4.11
v1.4.12
v1.4.2
v1.4.3
All 72 releases
Overview
Code
watchful
/
lib
/
Model
/
VerificationStep.php
VerificationStep.php
in Remote Website Management by Watchful trunk, at lib/Model/VerificationStep.php
23 lines
331 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
Watchful
\
Model
;
4
5
use
JsonSerializable
;
6
7
/**
8
*
@property
bool
$completed
9
*/
10
class
VerificationStep
implements
JsonSerializable
11
{
12
/**
@var
bool
*/
13
public
$
completed
=
false
;
14
15
public
function
jsonSerialize
(
)
:
array
16
{
17
return
[
18
'
completed
'
=>
$
this
->
completed
,
19
]
;
20
}
21
}
22
23