nebijokit/omniva

View on GitHub
src/Service.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Omniva;

use MyCLabs\Enum\Enum;

/**
 * @method static Service TERMINAL()
 * @method static Service COURIER()
 * @method static Service COURIER_LT_LV()
 * @method static Service POST_OFFICE()
 */
class Service extends Enum
{
    private const SMS = 'ST';
    private const EMAIL = 'SF';
    private const COD = 'BP';
    private const TERMINAL = 'PP';
    private const POST_OFFICE = 'CD';
    private const COURIER = 'QP';
    private const COURIER_LT_LV = 'QH';
}