Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 85.71% |
Changes | 0 |
1 | <?php |
||
8 | class Impersonate |
||
9 | { |
||
10 | /** |
||
11 | * @var AuthFactory |
||
12 | */ |
||
13 | protected $authFactory; |
||
14 | |||
15 | 49 | public function __construct(AuthFactory $authFactory) |
|
18 | 49 | } |
|
19 | |||
20 | /** |
||
21 | * Handles an incoming request. |
||
22 | * |
||
23 | * @param \Illuminate\Http\Request $request |
||
24 | * @param Closure $next |
||
25 | * @return mixed |
||
26 | */ |
||
27 | 48 | public function handle($request, Closure $next) |
|
36 |