We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5220f6 commit 592e5e1Copy full SHA for 592e5e1
src/Facades/JWTProvider.php
@@ -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