. */ namespace Plugin\ActivityPub\Util\Type\Extended\Object; use Plugin\ActivityPub\Util\Type\Core\ObjectType; /** * \Plugin\ActivityPub\Util\Type\Extended\Object\Note is an implementation of * one of the Activity Streams Extended Types. * * Represents a short written work typically less than a single * paragraph in length. * * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-note */ class Note extends ObjectType { /** * @var string */ protected string $type = 'Note'; }