Updated MessageOrigin objects

This commit is contained in:
netkas 2024-10-04 00:47:04 -04:00
parent 5426dd9e1c
commit 2405873510
5 changed files with 40 additions and 25 deletions

View file

@ -35,21 +35,20 @@ abstract class MessageOrigin implements ObjectTypeInterface
}
/**
* Converts the object to an array representation.
*
* @return array The array representation of the object.
* @inheritDoc
*/
public abstract function toArray(): array;
/**
* Converts an associative array to a MessageOrigin object.
*
* @param array $data The data representing the message origin.
* @return MessageOrigin The constructed MessageOrigin object.
* @throws InvalidArgumentException If the 'type' key is missing or an unknown type is provided.
* @inheritDoc
*/
public static function fromArray(array $data): MessageOrigin
public static function fromArray(?array $data): ?MessageOrigin
{
if($data === null)
{
return null;
}
if(!isset($data['type']))
{
throw new InvalidArgumentException('Message origin type is required');