File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 13
13
use Auth0 \SDK \Utility \HttpResponse ;
14
14
use Illuminate \Auth \Events \{Login , Logout };
15
15
use Illuminate \Contracts \Auth \Authenticatable ;
16
+ use Illuminate \Support \Traits \Macroable ;
16
17
17
18
use Throwable ;
18
19
26
27
* @api
27
28
*/
28
29
final class AuthenticationGuard extends GuardAbstract implements AuthenticationGuardContract
29
- {
30
+ {
31
+ use Macroable;
32
+
30
33
/**
31
34
* @var string
32
35
*/
Original file line number Diff line number Diff line change 8
8
use Auth0 \Laravel \UserProviderContract ;
9
9
use Auth0 \SDK \Utility \HttpResponse ;
10
10
use Illuminate \Contracts \Auth \Authenticatable ;
11
+ use Illuminate \Support \Traits \Macroable ;
11
12
12
13
use function is_array ;
13
14
use function is_string ;
19
20
*/
20
21
final class AuthorizationGuard extends GuardAbstract implements AuthorizationGuardContract
21
22
{
23
+ use Macroable;
24
+
22
25
public function find (): ?CredentialEntityContract
23
26
{
24
27
if ($ this ->isImpersonating ()) {
You can’t perform that action at this time.
0 commit comments