/**
  * Register the bindings for the main JWTAuth class.
  */
 protected function registerJWTAuth()
 {
     $this->app['tymon.jwt.auth'] = $this->app->share(function ($app) {
         $auth = new JWTAuth($app['tymon.jwt.manager'], $app['tymon.jwt.provider.user'], $app['tymon.jwt.provider.auth'], $app['request']);
         return $auth->setIdentifier($this->config('identifier'));
     });
 }
 /**
  * Set the identifier.
  *
  * @param string $identifier
  * @return $this 
  * @static 
  */
 public static function setIdentifier($identifier)
 {
     return \Tymon\JWTAuth\JWTAuth::setIdentifier($identifier);
 }