CacheAuth::retrieveByToken()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 0
c 1
b 0
f 0
nc 1
nop 2
dl 0
loc 2
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace KielD01\LaravelMaterialDashboardPro\Auth;
6
7
use Illuminate\Contracts\Auth\Authenticatable;
8
use Illuminate\Contracts\Auth\UserProvider;
9
use Illuminate\Support\Facades\Auth;
10
11
class CacheAuth implements UserProvider
12
{
13
	public function retrieveById($identifier)
14
	{
15
		// TODO: Implement retrieveById() method.
16
	}
17
18
	public function retrieveByCredentials(array $credentials)
19
	{
20
		// TODO: Implement retrieveByCredentials() method.
21
	}
22
23
	public function validateCredentials(Authenticatable $user, array $credentials)
24
	{
25
		// TODO: Implement validateCredentials() method.
26
	}
27
28
	public function retrieveByToken($identifier, $token)
29
	{
30
		// TODO: Implement retrieveByToken() method.
31
	}
32
33
	public function updateRememberToken(Authenticatable $user, $token)
34
	{
35
		// TODO: Implement updateRememberToken() method.
36
	}
37
}
38