Total Complexity | 5 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | class AuthorizePaymentRequest extends RequestEntity |
||
28 | { |
||
29 | /** @var string $customerId */ |
||
30 | protected $customerId; |
||
31 | |||
32 | /** @var string $invoiceId */ |
||
33 | protected $invoiceId; |
||
34 | |||
35 | /** @var \DateTime|bool $invoiceDate */ |
||
36 | protected $invoiceDate; |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function isValid() |
||
45 | ; |
||
46 | } |
||
47 | |||
48 | /** |
||
49 | * Sets Invoice Date |
||
50 | * |
||
51 | * @param string $invoiceDate |
||
52 | * |
||
53 | * @return $this |
||
54 | */ |
||
55 | public function setInvoiceDate($invoiceDate) |
||
64 |