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

10 lines
115 B
PHP

<?php
namespace NoccyLabs\SimpleJwt\Key;
interface KeyInterface
{
public function getBinaryKey(): string;
}