Skip to content

Instantly share code, notes, and snippets.

@mmouih
Created January 14, 2024 19:30
Show Gist options
  • Save mmouih/30834f5267b72507d2717fd4c3a9d294 to your computer and use it in GitHub Desktop.
Save mmouih/30834f5267b72507d2717fd4c3a9d294 to your computer and use it in GitHub Desktop.
PaymentProcessor Interface
<?php
namespace App\Domain\Payment;
use App\Entity\Client;
interface PaymentProcessor
{
public function handle(float $amount, Client $client): float;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment