wordpress-activitypub/includes/model/class-user.php

24 lines
294 B
PHP
Raw Normal View History

2023-05-15 10:48:34 +02:00
<?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;
}