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;
class AccountTypeType extends AbstractEnumType
{
const ASSET = 'asset';
const LIABILITY = 'liability';
const REVENUE = 'revenue';
const EXPENSE = 'expense';
const EQUITY = 'equity';
const GROUP = 'group';
protected function getPossibleValues(): array
return [
self::ASSET,
self::LIABILITY,
self::REVENUE,
self::EXPENSE,
self::EQUITY,
self::GROUP,
];
}