diff --git a/tests/Support/InMemoryKeySet.php b/tests/Support/InMemoryKeySet.php index 1bbe000..92ec55e 100644 --- a/tests/Support/InMemoryKeySet.php +++ b/tests/Support/InMemoryKeySet.php @@ -18,19 +18,6 @@ final class InMemoryKeySet implements KeySet */ public function __construct(private array $keys = []) {} - /** - * @param non-empty-string $id - */ - public function addKey(string $id, Key $key): void - { - $this->keys[$id] = $key; - } - - public function callsToFindByKeyId(): int - { - return $this->invocations; - } - public function findKeyById(string $id): Key { ++$this->invocations; diff --git a/tests/Support/ServiceAccount.php b/tests/Support/ServiceAccount.php deleted file mode 100644 index 5f579b2..0000000 --- a/tests/Support/ServiceAccount.php +++ /dev/null @@ -1,43 +0,0 @@ -