Skip to content

Instantly share code, notes, and snippets.

@akmalhazim
Last active May 19, 2019 01:07
Show Gist options
  • Save akmalhazim/c8a20afb2f89075bf280fd8bcf043c7c to your computer and use it in GitHub Desktop.
Save akmalhazim/c8a20afb2f89075bf280fd8bcf043c7c to your computer and use it in GitHub Desktop.
<?php
namespace App\Contracts;
use App\User;
use App\Card;
interface PaymentGateway {
public function getPaymentMethodNonce( User $user );
public function createCustomer( User $user );
public function deleteCustomer( User $user );
public function createCard( User $user, string $nonce );
public function deleteCard( Card $card );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment