1 | <?php |
||
2 | |||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
3 | namespace SchulIT\IdpExchange\Request; |
||
4 | |||
5 | use JMS\Serializer\Annotation as Serializer; |
||
6 | use Symfony\Component\Validator\Constraints as Assert; |
||
7 | |||
8 | /** |
||
9 | * Requests information for a specific user. |
||
10 | */ |
||
0 ignored issues
–
show
|
|||
11 | class UserRequest { |
||
0 ignored issues
–
show
|
|||
12 | /** |
||
13 | * Username of the requested user. |
||
14 | * |
||
15 | * @Serializer\Type("string") |
||
16 | * @Assert\NotBlank() |
||
17 | */ |
||
18 | public $username; |
||
19 | } |