PayU integration by Krzysztof Gzocha
  • Namespace
  • Class

Namespaces

  • Team3
    • PayU
      • Annotation
      • Communication
        • CurlRequestBuilder
        • HttpStatusParser
        • Notification
        • Process
          • NotificationProcess
          • ResponseDeserializer
        • Request
          • Model
        • Response
          • Model
        • Sender
      • Configuration
        • Credentials
      • Order
        • Autocomplete
          • Strategy
        • Model
          • Buyer
          • Money
          • Products
          • ShippingMethods
          • Traits
        • Transformer
          • UserOrder
            • Strategy
              • Product
              • ShippingMethod
      • PropertyExtractor
        • Reader
      • Serializer
      • SignatureCalculator
        • Encoder
          • Algorithms
          • Strategy
        • ParametersSorter
        • Validator
      • ValidatorBuilder

Classes

  • Team3\PayU\ValidatorBuilder\ValidatorBuilder

Interfaces

  • Team3\PayU\ValidatorBuilder\ValidatorBuilderInterface
 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 
PayU integration by Krzysztof Gzocha API documentation generated by ApiGen