Updated ForumTopicReopened

This commit is contained in:
netkas 2024-10-04 21:16:13 -04:00
parent 8d074ef36a
commit 89e3f9c575

View file

@ -20,13 +20,15 @@
} }
/** /**
* Constructs object from an array representation * @inheritDoc
*
* @param array $data
* @return ForumTopicReopened
*/ */
public static function fromArray(array $data): self public static function fromArray(?array $data): ?ForumTopicReopened
{ {
if($data === null)
{
return null;
}
return new self(); return new self();
} }
} }