Your IP : 216.73.216.95


Current Path : /var/test/www/storage2/vendor/cardinity/cardinity-sdk-php/src/Method/Refund/
Upload File :
Current File : /var/test/www/storage2/vendor/cardinity/cardinity-sdk-php/src/Method/Refund/GetAll.php

<?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;
    }
}