File "RefundCollection.php"
Full Path: /home/cananyalcin/public_html/core/lib/mollie/src/Resources/RefundCollection.php
File size: 404 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Mollie\Api\Resources;
class RefundCollection extends \Mollie\Api\Resources\CursorCollection
{
/**
* @return string
*/
public function getCollectionResourceName()
{
return "refunds";
}
/**
* @return BaseResource
*/
protected function createResourceObject()
{
return new \Mollie\Api\Resources\Refund($this->client);
}
}