Total Complexity | 0 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class UpdatedUsersRequest { |
||
12 | /** |
||
13 | * List of usernames which are checked for any updates. |
||
14 | * |
||
15 | * @Serializer\Type("array<string>") |
||
16 | * @Assert\Count(min="1") |
||
17 | */ |
||
18 | public $usernames = [ ]; |
||
19 | |||
20 | /** |
||
21 | * @Serializer\Type("DateTime") |
||
22 | * @Assert\NotNull() |
||
23 | */ |
||
24 | public $since = null; |
||
25 | } |