1: <?php
2:
3: namespace IPay\Enums;
4:
5: enum TransactionType: string
6: {
7: case CREDIT = 'Credit';
8: case DEBIT = 'Debit';
9: case ALL = '';
10: }
11: