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

User::__construct()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 12
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 5
Bugs 1 Features 3
Metric Value
c 5
b 1
f 3
dl 0
loc 12
rs 9.4285
cc 2
eloc 8
nc 2
nop 6
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