IdentityFacade   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
c 0
b 0
f 0
dl 0
loc 8
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: zhanglingyu
5
 * Date: 2019-03-06
6
 * Time: 10:59
7
 */
8
namespace ArcherZdip\Identity;
9
10
class IdentityFacade
11
{
12
    /**
13
     * @return string
14
     */
15
    protected static function getFacadeAccessor()
16
    {
17
        return 'identity_faker';
18
    }
19
}