1 <?php 2 namespace OpenDNS\MES\Trident; 3 4 /** 5 * Issue a credit. 6 * 7 * If you want to refund an already-processed transaction, use Refund instead. 8 */ 9 class Credit extends CardTransaction 10 { 11 protected $transactionType = 'C'; 12 } 13