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

11 lines
155 B
PHP

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