. */ namespace Plugin\ActivityPub\Util\Type\Core; /** * \Plugin\ActivityPub\Util\Type\Core\IntransitiveActivity is an implementation of * one of the Activity Streams Core Types. * * IntransitiveActivity objects are specializations of the Activity type * that represent intransitive actions. IntransitiveActivity objects do * not have an object property. * * @see https://www.w3.org/TR/activitystreams-core/#intransitiveactivities */ class IntransitiveActivity extends AbstractActivity { protected string $type = 'IntransitiveActivity'; }