File "GetAll.php"
Full path: /home/cakedeco/retaildirectonline.co.uk/system/storage/vendor/cardinity/cardinity-sdk-php/src/Method/Refund/GetAll.php
File
size: 940 B (940 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?php
namespace Cardinity\Method\Refund;
use Cardinity\Method\MethodInterface;
use Cardinity\Method\MethodResultCollectionInterface;
use Symfony\Component\Validator\Constraints as Assert;
class GetAll implements MethodResultCollectionInterface
{
private $paymentId;
public function __construct($paymentId)
{
$this->paymentId = $paymentId;
}
public function getAction()
{
return sprintf(
'payments/%s/refunds',
$this->getPaymentId()
);
}
public function getMethod()
{
return MethodInterface::GET;
}
public function createResultObject()
{
return new Refund();
}
public function getAttributes()
{
return [];
}
public function getValidationConstraints()
{
return new Assert\Collection([]);
}
public function getPaymentId()
{
return $this->paymentId;
}
}