Added ContactKnownKeyRecord.php

This commit is contained in:
netkas 2025-01-29 15:23:42 -05:00
parent 6c1c77ad20
commit bdd35dc8ac

View file

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