2023-06-23 14:54:29 +02:00
|
|
|
<?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
|
|
|
|
*/
|
2023-06-26 11:08:04 +02:00
|
|
|
class Person extends Base_Object {
|
2023-06-23 14:54:29 +02:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $type = 'Person';
|
|
|
|
}
|