toby/app/Domain/Notifications/Channels.php
2022-04-26 12:50:39 +02:00

12 lines
156 B
PHP

<?php
declare(strict_types=1);
namespace Toby\Domain\Notifications;
class Channels
{
public const MAIL = "mail";
public const SLACK = "slack";
}