Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
unsatisfiableness
/
core
/
lib
/
mollie
/
src
/
Types
:
MandateMethod.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Mollie\Api\Types; class MandateMethod { const DIRECTDEBIT = "directdebit"; const CREDITCARD = "creditcard"; const PAYPAL = "paypal"; public static function getForFirstPaymentMethod($firstPaymentMethod) { if ($firstPaymentMethod === \Mollie\Api\Types\PaymentMethod::PAYPAL) { return static::PAYPAL; } if (\in_array($firstPaymentMethod, [\Mollie\Api\Types\PaymentMethod::APPLEPAY, \Mollie\Api\Types\PaymentMethod::CREDITCARD])) { return static::CREDITCARD; } return static::DIRECTDEBIT; } }