. */ namespace Plugin\ActivityPub\Util\Type\Extended\Object; use Plugin\ActivityPub\Util\Type\Core\ObjectType; /** * \Plugin\ActivityPub\Util\Type\Extended\Object\Article is an implementation of * one of the Activity Streams Extended Types. * * Represents any kind of multi-paragraph written work. * * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-article */ class Article extends ObjectType { /** * @var string */ protected string $type = 'Article'; }