. */ namespace Plugin\ActivityPub\Util\Type\Extended\Actor; use Plugin\ActivityPub\Util\Type\Extended\AbstractActor; /** * \Plugin\ActivityPub\Util\Type\Extended\Actor\Service is an implementation of * one of the Activity Streams Extended Types. * * Represents a service of any kind. * * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-service */ class Service extends AbstractActor { /** * @var string */ protected string $type = 'Service'; }