. */ namespace Plugin\ActivityPub\Util\Type\Extended\Object; use Plugin\ActivityPub\Util\Type\Core\ObjectType; /** * \Plugin\ActivityPub\Util\Type\Extended\Object\Document is an implementation of * one of the Activity Streams Extended Types. * * Represents an audio document of any kind. * * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-document */ class Document extends ObjectType { /** * @var string */ protected string $type = 'Document'; }