wordpress-activitypub/includes/activity/class-person.php

21 lines
366 B
PHP
Raw Normal View History

<?php
/**
* Inspired by the PHP ActivityPub Library by @Landrok
*
* @link https://github.com/landrok/activitypub
*/
namespace Activitypub\Activity;
/**
* Represents an individual person.
*
* @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-person
*/
class Person extends Activity_Object {
/**
* @var string
*/
protected $type = 'Person';
}