friendica/src/Model/Notify/Type.php

21 lines
478 B
PHP
Raw Normal View History

2020-02-04 21:03:45 +00:00
<?php
namespace Friendica\Model\Notify;
/**
* Enum for different types of the Notify
*/
class Type
{
2020-02-04 21:07:10 +00:00
/** @var int Notification about a introduction */
2020-02-04 21:03:45 +00:00
const INTRO = 1;
2020-02-04 21:05:56 +00:00
/** @var int Notification about a confirmed introduction */
const CONFIRM = 2;
2020-02-04 21:07:10 +00:00
/** @var int Notification about a post on your wall */
const WALL = 4;
2020-02-04 21:09:00 +00:00
/** @var int Notification about a followup comment */
const COMMENT = 8;
2020-02-04 21:10:19 +00:00
/** @var int Notification about a private message */
const MAIL = 16;
2020-02-04 21:03:45 +00:00
}