Skip to content

Commit 592e5e1

Browse files
linaspasvtymondesigns
authored andcommitted
Added JWTProvider facade (tymondesigns#1505)
1 parent d5220f6 commit 592e5e1

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

src/Facades/JWTProvider.php

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
/*
4+
* This file is part of jwt-auth.
5+
*
6+
* (c) Sean Tymon <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Tymon\JWTAuth\Facades;
13+
14+
use Illuminate\Support\Facades\Facade;
15+
16+
class JWTProvider extends Facade
17+
{
18+
/**
19+
* Get the registered name of the component.
20+
*
21+
* @return string
22+
*/
23+
protected static function getFacadeAccessor()
24+
{
25+
return 'tymon.jwt.provider.jwt';
26+
}
27+
}

0 commit comments

Comments
 (0)