Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
www
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Editing: CardType.php
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * Indicates a card's type, such as `CREDIT` or `DEBIT`. */ class CardType { public const UNKNOWN_CARD_TYPE = 'UNKNOWN_CARD_TYPE'; public const CREDIT = 'CREDIT'; public const DEBIT = 'DEBIT'; }
Save
Cancel