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