. */ namespace Plugin\ActivityPub\Util\Type\Extended\Object; use Plugin\ActivityPub\Util\Type\Core\Link; /** * \Plugin\ActivityPub\Util\Type\Extended\Object\Mention is an implementation of * one of the Activity Streams Extended Types. * * A specialized Link that represents an @mention. * * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-mention */ class Mention extends Link { /** * @var string */ protected string $type = 'Mention'; }