You've already forked Atomcms-edit
12 lines
200 B
PHP
Executable File
12 lines
200 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Enums;
|
|
|
|
enum NotificationType: string
|
|
{
|
|
case ArticlePosted = 'article_posted';
|
|
case HousekeepingCustomMessage = 'housekeeping_custom_message';
|
|
}
|