...
 
Commits (2)
......@@ -422,6 +422,18 @@ class Group extends NormalizedEntity
$this->conversationDisabled = $value ? 1 : 0;
return $this;
}
/**
* Return the original `owner_guid` for the group.
* @return string guid
*/
public function getOwnerGuid()
{
$guids = $this->getOwnerGuids();
return $guids
? guids[0]
: $this->getOwnerObj()->guid;
}
/**
* Gets `owner_guids`
......