. */ namespace Plugin\ActivityPub\Util\Type\Extended\Actor; use Plugin\ActivityPub\Util\Type\Extended\AbstractActor; /** * \Plugin\ActivityPub\Util\Type\Extended\Actor\Organization is an implementation of * one of the Activity Streams Extended Types. * * Represents a formal or informal collective of Actors. * * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-organization */ class Organization extends AbstractActor { /** * @var string */ protected string $type = 'Organization'; }