expressly/php-common

View on GitHub
src/Entity/MerchantType.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Expressly\Entity;

class MerchantType
{
    const PRESTASHOP = 'prestashop';
    const MAGENTO = 'magento';
    const MAGENTO_2 = 'magento2';
    const OPENCART_1 = 'opencart1';
    const OPENCART_2 = 'opencart2';
    const WOOCOMMERCE = 'woocommerce';
    const OSCOMMERCE_2 = 'oscommerce2';
}