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\Model;
 6 
 7 interface OrderStatusInterface
 8 {
 9     const NEW_ORDER = 'NEW';
10     const PENDING = 'PENDING';
11     const WAITING_FOR_CONFIRMATION = 'WAITING_FOR_CONFIRMATION';
12     const COMPLETED = 'COMPLETED';
13     const CANCELED = 'CANCELED';
14     const REJECTED = 'REJECTED';
15 
16     /**
17      * @return string
18      */
19     public function getValue();
20 
21     /**
22      * @return bool
23      */
24     public function isEmpty();
25 
26     /**
27      * @return bool
28      */
29     public function isNew();
30 
31     /**
32      * @return bool
33      */
34     public function isPending();
35 
36     /**
37      * @return bool
38      */
39     public function isWaitingForConfirmation();
40 
41     /**
42      * @return bool
43      */
44     public function isCompleted();
45 
46     /**
47      * @return bool
48      */
49     public function isCanceled();
50 
51     /**
52      * @return bool
53      */
54     public function isRejected();
55 }
56 
PayU integration by Krzysztof Gzocha API documentation generated by ApiGen