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