GetAll.php
1.03 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
<?php
namespace Cardinity\Method\Payment;
use Cardinity\Method\MethodInterface;
use Cardinity\Method\MethodResultCollectionInterface;
use Symfony\Component\Validator\Constraints as Assert;
class GetAll implements MethodResultCollectionInterface
{
private $limit;
public function __construct($limit = 10)
{
$this->limit = $limit;
}
public function getLimit()
{
return $this->limit;
}
public function getAction()
{
return 'payments';
}
public function getMethod()
{
return MethodInterface::GET;
}
public function createResultObject()
{
return new Payment();
}
public function getAttributes()
{
return [
'limit' => $this->getLimit()
];
}
public function getValidationConstraints()
{
return new Assert\Collection([
'limit' => new Assert\Optional([
new Assert\NotNull(),
new Assert\Type(['type' => 'integer']),
]),
]);
}
}