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