관리-도구
편집 파일: ChargebackCollection.php
<?php namespace Mollie\Api\Resources; class ChargebackCollection extends CursorCollection { /** * @return string */ public function getCollectionResourceName() { return "chargebacks"; } /** * @return BaseResource */ protected function createResourceObject() { return new Chargeback($this->client); } }