FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
src
/
Models
Edit File: CardType.php
<?php declare(strict_types=1); namespace 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
Back