Skip to content

Commit

Permalink
Create TransactionStatus.php
Browse files Browse the repository at this point in the history
  • Loading branch information
remcotolsma committed Oct 19, 2023
1 parent 4176147 commit 0223045
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions src/TransactionStatus.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?php
/**
* Transaction status
*
* @author Pronamic <info@pronamic.eu>
* @copyright 2005-2023 Pronamic
* @license GPL-3.0-or-later
* @package Pronamic\WordPress\Pay\Gateways\OmniKassa2
*/

namespace Pronamic\WordPress\Pay\Gateways\OmniKassa2;

use Pronamic\WordPress\Pay\Payments\PaymentStatus;

Check failure on line 13 in src/TransactionStatus.php

View workflow job for this annotation

GitHub Actions / phpcs / phpcs

Type Pronamic\WordPress\Pay\Payments\PaymentStatus is not used in this file.

/**
* Transaction status class
*/
class TransactionStatus {
/**
* Success.
*
* @var string
*/
const SUCCESS = 'SUCCESS';

/**
* Accepted.
*
* @var string
*/
const ACCEPTED = 'ACCEPTED';

/**
* Cancelled.
*
* @var string
*/
const CANCELLED = 'CANCELLED';

/**
* Expired.
*
* @var string
*/
const EXPIRED = 'EXPIRED';

/**
* Failure.
*
* @var string
*/
const FAILURE = 'FAILURE';
}

0 comments on commit 0223045

Please sign in to comment.