Skip to content

Commit

Permalink
feat: payment status
Browse files Browse the repository at this point in the history
  • Loading branch information
brokeyourbike committed Feb 29, 2024
1 parent 125305b commit 95f2414
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/Enums/PaymentStatusEnum.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?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\ZenithBankCIB\Enums;

/**
* @author Ivan Stasiuk <ivan@stasi.uk>
*/
enum PaymentStatusEnum: string
{
case PENDING = 'pending';
case FAILED = 'Failed';
}

0 comments on commit 95f2414

Please sign in to comment.