Your IP : 216.73.216.95


Current Path : /var/test/www/alh/system/storage/vendor/cardinity/cardinity-sdk-php/src/Method/Payment/
Upload File :
Current File : /var/test/www/alh/system/storage/vendor/cardinity/cardinity-sdk-php/src/Method/Payment/Finalize.php

<?php

namespace Cardinity\Method\Payment;

use Cardinity\Method\MethodInterface;
use Symfony\Component\Validator\Constraints as Assert;

class Finalize implements MethodInterface
{
    private $paymentId;
    private $authorizeData;
    
    public function __construct($paymentId, $authorizeData)
    {
        $this->paymentId = $paymentId;
        $this->authorizeData = $authorizeData;
    }

    public function getPaymentId()
    {
        return $this->paymentId;
    }

    public function getAuthorizeData()
    {
        return $this->authorizeData;
    }

    public function getAction()
    {
        return sprintf('payments/%s', $this->getPaymentId());
    }

    public function getMethod()
    {
        return MethodInterface::PATCH;
    }

    public function createResultObject()
    {
        return new Payment();
    }

    public function getAttributes()
    {
        return [
            'authorize_data' => $this->getAuthorizeData()
        ];
    }

    public function getValidationConstraints()
    {
        return new Assert\Collection([
            'authorize_data' => new Assert\Required([
                new Assert\NotBlank(),
                new Assert\Type(['type' => 'string']),
            ])
        ]);
    }
}