Issues (26)

src/UserInterface.php (1 issue)

Labels
Severity
1
<?php
2
namespace Germania\Users;
3
4
5
6
interface UserInterface extends UserIdAwareInterface
7
{
8
9
    public function getFullName();
10
11
    /**
12
     * @return boolean
13
     */
14
    public function isActive();
15
16
    /**
17
     * @return DateTime
0 ignored issues
show
The type Germania\Users\DateTime was not found. Did you mean DateTime? If so, make sure to prefix the type with \.
Loading history...
18
     */
19
    public function getCreationDateTime();
20
21
    /**
22
     * @return DateTime
23
     */
24
    public function getLastUpdateDateTime();
25
26
27
    public function setDisplayName( $name );
28
    public function getDisplayName();
29
30
    public function setFirstName($name);
31
    public function getFirstName();
32
33
    public function setLastName($name);
34
    public function getLastName();
35
36
    public function setLoginName($name);
37
    public function getLoginName();
38
39
    public function setEmail( $email);
40
    public function getEmail();
41
42
    public function getApiKey();
43
    public function setApiKey( $key );
44
45
46
}
47