24 lines
294 B
PHP
24 lines
294 B
PHP
|
<?php
|
||
|
namespace Activitypub\Model;
|
||
|
|
||
|
/**
|
||
|
* ActivityPub User Class
|
||
|
*
|
||
|
* @author Matthias Pfefferle
|
||
|
*/
|
||
|
class User {
|
||
|
/**
|
||
|
* The ID of the Blog User
|
||
|
*
|
||
|
* @var int
|
||
|
*/
|
||
|
const BLOG_USER_ID = 0;
|
||
|
|
||
|
/**
|
||
|
* The ID of the Application User
|
||
|
*
|
||
|
* @var int
|
||
|
*/
|
||
|
const APPLICATION_USER_ID = -1;
|
||
|
}
|