Completed
Pull Request — master (#16)
by
unknown
03:09
created

User::clearPasswordResetToken()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
c 1
b 1
f 0
dl 0
loc 6
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
3
namespace SumoCoders\FrameworkMultiUserBundle\User;
4
5
use Symfony\Component\Security\Core\User\UserInterface;
6
7
interface User extends UserInterface
8
{
9
    /**
10
     * @return string
11
     */
12
    public function __toString();
13
14
    /**
15
     * @return string
16
     */
17
    public function getDisplayName();
18
19
    /**
20
     * @return string
21
     */
22
    public function getEmail();
23
24
    /**
25
     * @return int
26
     */
27
    public function getId();
28
}
29