for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Application\Api\Enum;
use Ecodev\Felix\Api\Enum\EnumType;
class PaymentMethodType extends EnumType
{
public function __construct()
$config = [
\Application\DBAL\Types\PaymentMethodType::DATATRANS => 'Carte de crédit',
\Application\DBAL\Types\PaymentMethodType::EBANKING => 'Virement bancaire',
\Application\DBAL\Types\PaymentMethodType::BVR => 'Bulletin de versement',
];
parent::__construct($config);
}