. */ namespace Plugin\ActivityPub\Util\Type\Extended\Activity; use Plugin\ActivityPub\Util\Type\Core\Activity; /** * \Plugin\ActivityPub\Util\Type\Extended\Activity\Announce is an implementation of * one of the Activity Streams Extended Types. * * Indicates that the actor is calling the target's attention the * object. * * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-announce */ class Announce extends Activity { /** * @var string */ protected string $type = 'Announce'; }