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  * {@inheritdoc}
 9  *
10  * Class ReaderResult
11  * @package Team3\PayU\PropertyExtractor\Reader
12  */
13 class ReaderResult implements ReaderResultInterface
14 {
15     /**
16      * @var string
17      */
18     private $methodName;
19 
20     /**
21      * @var string
22      */
23     private $propertyName;
24 
25     /**
26      * @param string $methodName
27      * @param string $propertyName
28      */
29     public function __construct(
30         $methodName,
31         $propertyName
32     ) {
33         $this->methodName = $methodName;
34         $this->propertyName = $propertyName;
35     }
36 
37     /**
38      * @return string
39      */
40     public function getMethodName()
41     {
42         return $this->methodName;
43     }
44 
45     /**
46      * @return string
47      */
48     public function getPropertyName()
49     {
50         return $this->propertyName;
51     }
52 }
53 
PayU integration by Krzysztof Gzocha API documentation generated by ApiGen