for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Application\DBAL\Types;
use Ecodev\Felix\DBAL\Types\EnumType;
class MessageTypeType extends EnumType
{
final public const EXPORT_DONE = 'export_done';
protected function getPossibleValues(): array
return [
self::EXPORT_DONE,
];
}