UpdatedUsersResponse
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 2
dl 0
loc 5
c 0
b 0
f 0
1
<?php
2
0 ignored issues
show
Coding Style introduced by
Missing file doc comment
Loading history...
3
namespace SchulIT\IdpExchange\Response;
4
5
use JMS\Serializer\Annotation as Serializer;
6
7
class UpdatedUsersResponse {
0 ignored issues
show
Coding Style introduced by
Missing doc comment for class UpdatedUsersResponse
Loading history...
Coding Style introduced by
Opening brace of a class must be on the line after the definition
Loading history...
8
    /**
0 ignored issues
show
Coding Style introduced by
Missing short description in doc comment
Loading history...
9
     * @Serializer\Type("array<SchulIT\IdpExchange\Response\UserUpdateInformation>")
10
     */
11
    public $users = [ ];
12
}