. */ namespace Plugin\ActivityPub\Util\Type\Extended\Activity; use Plugin\ActivityPub\Util\Type\Core\Activity; /** * \Plugin\ActivityPub\Util\Type\Extended\Activity\Update is an implementation of * one of the Activity Streams Extended Types. * * Indicates that the actor has updated the object. Note, however, that * this vocabulary does not define a mechanism for describing the actual * set of modifications made to object. * * The target and origin typically have no defined meaning. * * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-update */ class Update extends Activity { /** * @var string */ protected string $type = 'Update'; }