Issues (181)

Response/UsersResponse.php (8 issues)

1
<?php
2
0 ignored issues
show
Missing file doc comment
Loading history...
3
namespace SchulIT\IdpExchange\Response;
4
5
use JMS\Serializer\Annotation as Serializer;
6
7
/**
8
 * Represents a response of a UsersRequest
9
 */
0 ignored issues
show
Missing @category tag in class comment
Loading history...
Missing @package tag in class comment
Loading history...
Missing @author tag in class comment
Loading history...
Missing @license tag in class comment
Loading history...
Missing @link tag in class comment
Loading history...
10
class UsersResponse {
0 ignored issues
show
Opening brace of a class must be on the line after the definition
Loading history...
11
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
12
     * @Serializer\Type("array<SchulIT\IdpExchange\Response\UserResponse>")
13
     */
14
    public $users = [ ];
15
}