1 <?php
2 /**
3 * @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl>
4 */
5 namespace Team3\PayU\Order\Transformer\UserOrder;
6
7 /**
8 * Class TransformerPropertiesRegExp is holding constants that represents regular expressions
9 * of transformer properties.
10 *
11 * @package Team3\PayU\Order\Transformer\UserOrder
12 */
13 final class TransformerPropertiesRegExp
14 {
15 const BUYER_REGEXP = '/^buyer\.\w+$/';
16 const DELIVERY_REGEXP = '/^delivery\.\w+$/';
17 const GENERAL_REGEXP = '/^general\.\w+$/';
18 const INVOICE_REGEXP = '/^invoice\.\w+$/';
19 const SHIPPING_METHOD_REGEXP = '/^shippingMethod\.\w+$/';
20 const URL_REGEXP = '/^url\.\w+$/';
21 }
22