youngguns-nl / moneybird_php_api

A PHP Library for the MoneyBird API
http://www.moneybird.nl
MIT License
37 stars 14 forks source link

'credit_invoice' missing from payment method list #22

Closed jelrikvh closed 12 years ago

jelrikvh commented 12 years ago

The Payment/Abstract.php "Payment_Abstract" class seems to miss the "credit_invoice" payment method.

    /**
     * Allowed payment methods
     * @var Array
     */
    protected $_paymentMethods = array(
        'bank_transfer',
        'creditcard',
        'direct_debit',
        'ideal',
        'paypal',
        'pin',
    );

This presents me with an error when fetching payments for a credited invoice. Pull request is coming up.