Passed
Branch master (6a00e9)
by David
02:22
created

UserMock   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 20
rs 10
c 0
b 0
f 0
wmc 5
1
<?php
2
3
namespace Terox\SubscriptionBundle\Tests\Mock;
4
5
use Symfony\Component\Security\Core\User\UserInterface;
6
7
class UserMock implements UserInterface
8
{
9
    public function getRoles()
10
    {
11
    }
12
13
    public function getPassword()
14
    {
15
    }
16
17
    public function getSalt()
18
    {
19
    }
20
21
    public function getUsername()
22
    {
23
    }
24
25
    public function eraseCredentials()
26
    {
27
    }
28
}