Move Notify::TYPE_WALL

This commit is contained in:
nupplaPhil 2020-02-04 22:07:10 +01:00
parent 6e45514e2c
commit b86ad37001
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
5 changed files with 8 additions and 6 deletions

View file

@ -7,8 +7,10 @@ namespace Friendica\Model\Notify;
*/
class Type
{
/** @var int Introduction notifications */
/** @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;
}