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\Communication\CurlRequestBuilder;
 6 
 7 use Buzz\Message\Request;
 8 use Team3\PayU\Communication\Request\PayURequestInterface;
 9 use Team3\PayU\Configuration\ConfigurationInterface;
10 
11 /**
12  * This library is using two types of request. First type is {@link PayuRequestInterface}
13  * and second is {@link \Buzz\Message\Request}. Responsibility of this class is to transform
14  * simple {@link PayURequestInterface} into {@link \Buzz\Message\Request} with given
15  * {@link ConfigurationInterface}
16  *
17  * Interface CurlRequestBuilderInterface
18  * @package Team3\PayU\Communication\CurlRequestBuilder
19  */
20 interface CurlRequestBuilderInterface
21 {
22     /**
23      * @param ConfigurationInterface $configuration
24      * @param PayURequestInterface   $request
25      *
26      * @return Request
27      */
28     public function build(ConfigurationInterface $configuration, PayURequestInterface $request);
29 }
30 
PayU integration by Krzysztof Gzocha API documentation generated by ApiGen