. */ namespace Plugin\ActivityPub\Util\Type\Extended\Activity; use Plugin\ActivityPub\Util\Type\Core\Activity; /** * \Plugin\ActivityPub\Util\Type\Extended\Activity\Follow is an implementation of * one of the Activity Streams Extended Types. * * Indicates that the actor is "following" the object. Following is * defined in the sense typically used within Social systems in which * the actor is interested in any activity performed by or on the * object. * The target and origin typically have no defined meaning. * * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-follow */ class Follow extends Activity { /** * @var string */ protected string $type = 'Follow'; }