mollie / mollie-api-php

Mollie API client for PHP
http://www.mollie.com
BSD 2-Clause "Simplified" License
552 stars 191 forks source link

Invoices API missing in v1 while it is documented? #206

Closed holtkamp closed 6 years ago

holtkamp commented 6 years ago

Specifications

Describe the issue

The API Documentation for v1 describes an Invoices API

However when looking at the v1 API client, no Invoices endpoint / resource seems to be implemented...

On the master branch this is available: https://github.com/mollie/mollie-api-php/blob/4cd551920a6fad339e09fdfdbbe13eff4af5f679/src/Resources/Invoice.php

Am I missing something? The migration guide kind of suggests that the Invoice API was/should also be part of v1...

willemstuursma commented 6 years ago

Hi @holtkamp. You are right. It's part of the v1 API, however the objects were never implemented in the PHP API client.

You can create a PR or use the magic __call() method.

willemstuursma commented 6 years ago

This is related to https://github.com/mollie/laravel-mollie/pull/35.

holtkamp commented 6 years ago

Aah, ok, thanks for the swift response, I will have a look.