src/Enums/TransactionStatusEnum.php
<?php
// Copyright (C) 2024 Ivan Stasiuk <ivan@stasi.uk>.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
namespace BrokeYourBike\YoguPay\Enums;
/**
* @author Ivan Stasiuk <ivan@stasi.uk>
*/
enum TransactionStatusEnum: string
{
case PENDING_FUNDS = '0';
case PENDING_REMITTANCE = '1';
case SUCCESS = '2';
case FAIL = '4';
}