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