php-simple-jwt/src/Key/JwtPlaintextKey.php

20 lines
280 B
PHP

<?php
namespace NoccyLabs\SimpleJwt\Key;
class JwtPlaintextKey implements KeyInterface
{
private $key;
public function __construct(string $key)
{
$this->key = $key;
}
public function getBinaryKey(): string
{
return $this->key;
}
}