Add ResolvedServerRecord class to the database module

This commit is contained in:
netkas 2024-10-25 13:38:47 -04:00
parent 7073af234f
commit 7a9dd62d75

View file

@ -0,0 +1,25 @@
<?php
namespace Socialbox\Objects\Database;
use Socialbox\Interfaces\SerializableInterface;
class ResolvedServerRecord implements SerializableInterface
{
/**
* @inheritDoc
*/
public static function fromArray(array $data): object
{
// TODO: Implement fromArray() method.
}
/**
* @inheritDoc
*/
public function toArray(): array
{
// TODO: Implement toArray() method.
}
}