Added ContactKnownKeyRecord.php
This commit is contained in:
parent
6c1c77ad20
commit
bdd35dc8ac
1 changed files with 25 additions and 0 deletions
25
src/Socialbox/Objects/Database/ContactKnownKeyRecord.php
Normal file
25
src/Socialbox/Objects/Database/ContactKnownKeyRecord.php
Normal 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.
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue