. */ namespace Plugin\ActivityPub\Util\Type\Core; /** * \Plugin\ActivityPub\Util\Type\Core\OrderedCollection is an implementation of one * of the Activity Streams Core Types. * * A subtype of Collection in which members of the logical collection * are assumed to always be strictly ordered. * * @see https://www.w3.org/TR/activitystreams-core/#collections */ class OrderedCollection extends Collection { /** * @var string */ protected string $type = 'OrderedCollection'; }