. */ namespace Plugin\ActivityPub\Util\Type\Extended\Activity; use Plugin\ActivityPub\Util\Type\Core\Activity; /** * \Plugin\ActivityPub\Util\Type\Extended\Activity\Remove is an implementation of * one of the Activity Streams Extended Types. * * Indicates that the actor is removing the object. * If specified, the origin indicates the context from which the object * is being removed. * * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-remove */ class Remove extends Activity { /** * @var string */ protected string $type = 'Remove'; }