Files
archived-doctrine-website/lib/Model/EventType.php
2019-05-15 00:43:41 -05:00

16 lines
227 B
PHP

<?php
declare(strict_types=1);
namespace Doctrine\Website\Model;
final class EventType
{
public const WEBINAR = 'webinar';
public const CONFERENCE = 'conference';
private function __construct()
{
}
}