. */ namespace Plugin\ActivityStreamsTwo\Util\Type\Extended\Activity; use Plugin\ActivityStreamsTwo\Util\Type\Core\Activity; /** * \Plugin\ActivityStreamsTwo\Util\Type\Extended\Activity\Join is an implementation of * one of the Activity Streams Extended Types. * * Indicates that the actor has joined the object. * The target and origin typically have no defined meaning. * * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-join */ class Join extends Activity { /** * @var string */ protected string $type = 'Join'; }