IpToUserMapper
last analyzed

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
getInternalUser() 0 1 ?
1
<?php
2
3
namespace Kaliop\IdentityManagementBundle\Security\Interfaces;
4
5
interface IpToUserMapper
6
{
7
    /**
8
     * @param string $ip
9
     * @return null|string the user identifier - normally either login or email (exactly what is suppported depends on the user provider)
10
     */
11
    public function getInternalUser($ip);
12
}
13