Skip to content

Commit

Permalink
adding payload factory facade
Browse files Browse the repository at this point in the history
  • Loading branch information
tymondesigns committed Apr 17, 2015
1 parent 06db519 commit 5375994
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/Facades/JWTFactory.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

namespace Tymon\JWTAuth\Facades;

use Illuminate\Support\Facades\Facade;

class JWTFactory extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'tymon.jwt.payload.factory';
}
}

0 comments on commit 5375994

Please sign in to comment.