Skip to content

Commit

Permalink
gateway contract created;
Browse files Browse the repository at this point in the history
  • Loading branch information
hans-thomas committed Aug 22, 2023
1 parent 74f1bdd commit fd555a8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/Contracts/Gateway.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

namespace Hans\Lyra\Contracts;

interface Gateway {
function request(): string;

function pay(): string;

function verify(): string;

function translateError( int $error ): string;
}

0 comments on commit fd555a8

Please sign in to comment.