/home/techb158/immovalet.com/vendor/mollie/mollie-api-php/src/Endpoints
NameSizeModeActions
ChargebackEndpoint.php13720644editdlrm
CollectionEndpointAbstract.php4710644editdlrm
CustomerEndpoint.php33150644editdlrm
CustomerPaymentsEndpoint.php28450644editdlrm
EndpointAbstract.php64340644editdlrm
InvoiceEndpoint.php20410644editdlrm
MandateEndpoint.php43180644editdlrm
MethodEndpoint.php31230644editdlrm
OnboardingEndpoint.php21320644editdlrm
OrderEndpoint.php36000644editdlrm
OrderLineEndpoint.php30830644editdlrm
OrderPaymentEndpoint.php20990644editdlrm
OrderRefundEndpoint.php19340644editdlrm
OrganizationEndpoint.php16730644editdlrm
PaymentCaptureEndpoint.php17290644editdlrm
PaymentChargebackEndpoint.php16980644editdlrm
PaymentEndpoint.php47850644editdlrm
PaymentLinkEndpoint.php24400644editdlrm
PaymentRefundEndpoint.php23890644editdlrm
PermissionEndpoint.php16080644editdlrm
ProfileEndpoint.php41210644editdlrm
ProfileMethodEndpoint.php36180644editdlrm
RefundEndpoint.php13280644editdlrm
SettlementPaymentEndpoint.php11700644editdlrm
SettlementsEndpoint.php22940644editdlrm
ShipmentEndpoint.php46100644editdlrm
SubscriptionEndpoint.php59750644editdlrm
WalletEndpoint.php10530644editdlrm
Edit: /home/techb158/immovalet.com/vendor/mollie/mollie-api-php/src/Endpoints/SubscriptionEndpoint.php (5975B)
client); } /** * Get the collection object that is used by this API endpoint. Every API endpoint uses one type of collection object. * * @param int $count * @param \stdClass $_links * * @return SubscriptionCollection */ protected function getResourceCollectionObject($count, $_links) { return new SubscriptionCollection($this->client, $count, $_links); } /** * Create a subscription for a Customer * * @param Customer $customer * @param array $options * @param array $filters * * @return Subscription */ public function createFor(Customer $customer, array $options = [], array $filters = []) { return $this->createForId($customer->id, $options, $filters); } /** * Create a subscription for a Customer * * @param string $customerId * @param array $options * @param array $filters * * @return Subscription */ public function createForId($customerId, array $options = [], array $filters = []) { $this->parentId = $customerId; return parent::rest_create($options, $filters); } /** * Update a specific Subscription resource. * * Will throw an ApiException if the subscription id is invalid or the resource cannot be found. * * @param string $subscriptionId * @param string $customerId * * @param array $data * @return Order * @throws ApiException */ public function update($customerId, $subscriptionId, array $data = []) { if (empty($subscriptionId) || strpos($subscriptionId, self::RESOURCE_ID_PREFIX) !== 0) { throw new ApiException("Invalid subscription ID: '{$subscriptionId}'. An subscription ID should start with '".self::RESOURCE_ID_PREFIX."'."); } $this->parentId = $customerId; return parent::rest_update($subscriptionId, $data); } /** * @param Customer $customer * @param string $subscriptionId * @param array $parameters * * @return Subscription */ public function getFor(Customer $customer, $subscriptionId, array $parameters = []) { return $this->getForId($customer->id, $subscriptionId, $parameters); } /** * @param string $customerId * @param string $subscriptionId * @param array $parameters * * @return Subscription */ public function getForId($customerId, $subscriptionId, array $parameters = []) { $this->parentId = $customerId; return parent::rest_read($subscriptionId, $parameters); } /** * @param Customer $customer * @param string $from The first resource ID you want to include in your list. * @param int $limit * @param array $parameters * * @return SubscriptionCollection */ public function listFor(Customer $customer, $from = null, $limit = null, array $parameters = []) { return $this->listForId($customer->id, $from, $limit, $parameters); } /** * @param string $customerId * @param string $from The first resource ID you want to include in your list. * @param int $limit * @param array $parameters * * @return SubscriptionCollection */ public function listForId($customerId, $from = null, $limit = null, array $parameters = []) { $this->parentId = $customerId; return parent::rest_list($from, $limit, $parameters); } /** * @param Customer $customer * @param string $subscriptionId * @param array $data * * @return null * @throws \Mollie\Api\Exceptions\ApiException */ public function cancelFor(Customer $customer, $subscriptionId, array $data = []) { return $this->cancelForId($customer->id, $subscriptionId, $data); } /** * @param string $customerId * @param string $subscriptionId * @param array $data * * @return null * @throws \Mollie\Api\Exceptions\ApiException */ public function cancelForId($customerId, $subscriptionId, array $data = []) { $this->parentId = $customerId; return parent::rest_delete($subscriptionId, $data); } /** * Retrieves a collection of Subscriptions from Mollie. * * @param string $from The first payment ID you want to include in your list. * @param int $limit * @param array $parameters * * @return SubscriptionCollection * @throws \Mollie\Api\Exceptions\ApiException */ public function page($from = null, $limit = null, array $parameters = []) { $filters = array_merge(["from" => $from, "limit" => $limit], $parameters); $apiPath = 'subscriptions' . $this->buildQueryString($filters); $result = $this->client->performHttpCall(self::REST_LIST, $apiPath); /** @var SubscriptionCollection $collection */ $collection = $this->getResourceCollectionObject($result->count, $result->_links); foreach ($result->_embedded->{$collection->getCollectionResourceName()} as $dataResult) { $collection[] = ResourceFactory::createFromApiResult($dataResult, $this->getResourceObject()); } return $collection; } }