Auth::getFacadeAccessor()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: afshin
5
 * Date: 11/24/17
6
 * Time: 1:08 PM
7
 */
8
9
namespace Core\Facades;
10
11
use Core\Services\AuthService;
12
use SlimFacades\Facade;
13
class Auth extends Facade
14
{
15
    /**
16
     * @param Core\Services\AuthService\AuthService
17
     * @return AuthService
18
    */
19
    protected static function getFacadeAccessor()
20
    {
21
        return 'AuthService';
0 ignored issues
show
Bug Best Practice introduced by
The expression return 'AuthService' returns the type string which is incompatible with the documented return type Core\Services\AuthService.
Loading history...
22
    }
23
}
24