1 | <?php |
||
2 | |||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
3 | namespace SchulIT\IdpExchange\Response; |
||
4 | |||
5 | use JMS\Serializer\Annotation as Serializer; |
||
6 | |||
7 | /** |
||
8 | * Represents information about when a given user has been updated. |
||
9 | */ |
||
0 ignored issues
–
show
|
|||
10 | class UserUpdateInformation |
||
11 | { |
||
12 | /** |
||
0 ignored issues
–
show
|
|||
13 | * @Serializer\Type("string") |
||
14 | */ |
||
15 | public $username; |
||
16 | |||
17 | /** |
||
0 ignored issues
–
show
|
|||
18 | * @Serializer\Type("DateTime") |
||
19 | */ |
||
20 | public $updated; |
||
21 | } |