Create.php
1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
namespace Cardinity\Method\VoidPayment;
use Cardinity\Method\MethodInterface;
use Symfony\Component\Validator\Constraints as Assert;
class Create implements MethodInterface
{
private $paymentId;
private $description;
public function __construct($paymentId, $description = null)
{
$this->paymentId = $paymentId;
$this->description = $description;
}
public function getAction()
{
return sprintf('payments/%s/voids', $this->paymentId);
}
public function getMethod()
{
return MethodInterface::POST;
}
public function getAttributes()
{
$return = [];
if ($this->description !== null) {
$return['description'] = $this->description;
}
return $return;
}
public function createResultObject()
{
return new VoidPayment();
}
public function getValidationConstraints()
{
return new Assert\Collection([
'description' => new Assert\Optional([
new Assert\Type(['type' => 'string']),
new Assert\Length([
'max' => 255
]),
]),
]);
}
}