Your IP : 216.73.216.164


Current Path : /var/www/ooareogundevinitiative/wp-content/plugins/give/src/Repositories/
Upload File :
Current File : /var/www/ooareogundevinitiative/wp-content/plugins/give/src/Repositories/PaymentsRepository.php

<?php

namespace Give\Repositories;

use Give_Payment;

class PaymentsRepository {
	/**
	 * Retrieves a donation for the given payment ID
	 *
	 * @since 2.8.0
	 *
	 * @param string $paymentId
	 *
	 * @return Give_Payment
	 */
	public function getDonationByPayment( $paymentId ) {
		$payments = give_get_payments(
			[
				'meta_key'   => '_give_payment_transaction_id',
				'meta_value' => $paymentId,
				'number'     => 1,
			]
		);

		return empty( $payments ) ? null : $payments[0];
	}
}