friendica/src/Model/Notify/Type.php

23 lines
555 B
PHP

<?php
namespace Friendica\Model\Notify;
/**
* Enum for different types of the Notify
*/
class Type
{
/** @var int Notification about a introduction */
const INTRO = 1;
/** @var int Notification about a confirmed introduction */
const CONFIRM = 2;
/** @var int Notification about a post on your wall */
const WALL = 4;
/** @var int Notification about a followup comment */
const COMMENT = 8;
/** @var int Notification about a private message */
const MAIL = 16;
/** @var int Notification about a friend suggestion */
const SUGGEST = 32;
}