Remove ResolvedServerOld class to clean up unused code and improve maintainability.

This commit is contained in:
netkas 2025-03-13 14:03:05 -04:00
parent c4cd5ee352
commit e723528eb8
Signed by: netkas
GPG key ID: 4D8629441B76E4CC

View file

@ -1,25 +0,0 @@
<?php
namespace Socialbox\Objects;
class ResolvedServer
{
private string $endpoint;
private string $publicKey;
public function __construct(string $endpoint, string $publicKey)
{
$this->endpoint = $endpoint;
$this->publicKey = $publicKey;
}
public function getEndpoint(): string
{
return $this->endpoint;
}
public function getPublicKey(): string
{
return $this->publicKey;
}
}