mirror of
https://gh.wpcy.net/https://github.com/boldthemes/wp-juggler-client.git
synced 2026-04-25 17:29:00 +08:00
18 lines
416 B
PHP
18 lines
416 B
PHP
<?php
|
|
/**
|
|
* Define a `wrapper namespace` to load the Firebase's JWT & Key classes
|
|
* and prevent conflicts with other plugins using the same library
|
|
* with different versions.
|
|
*
|
|
* @link https://enriquechavez.co
|
|
* @since 1.0.0
|
|
* @author marioshtika https://github.com/marioshtika
|
|
*/
|
|
|
|
namespace WPJC\Firebase\JWT;
|
|
|
|
class JWT extends \Firebase\JWT\JWT {
|
|
}
|
|
|
|
class Key extends \Firebase\JWT\Key {
|
|
}
|