Issues (181)

Response/UserUpdateInformation.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 information about when a given user has been updated.
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 UserUpdateInformation
11
{
12
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
13
     * @Serializer\Type("string")
14
     */
15
    public $username;
16
17
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
18
     * @Serializer\Type("DateTime")
19
     */
20
    public $updated;
21
}