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

10 lines
115 B
PHP
Raw Normal View History

2021-02-11 12:22:51 +00:00
<?php
namespace NoccyLabs\SimpleJwt\Key;
interface KeyInterface
{
public function getBinaryKey(): string;
}