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\PropertyExtractor\Reader;
 6 
 7 /**
 8  * This class is responsible to read single object for required parameters.
 9  * It will return array {@link ReaderResultInterface}.
10  *
11  * Interface ReaderInterface
12  * @package Team3\PayU\PropertyExtractor\Reader
13  */
14 interface ReaderInterface
15 {
16     /**
17      * @param object $object
18      *
19      * @return ReaderResultInterface[]
20      */
21     public function read($object);
22 }
23 
PayU integration by Krzysztof Gzocha API documentation generated by ApiGen