Skip to content

Instantly share code, notes, and snippets.

@mmouih
Created January 29, 2024 01:45
Show Gist options
  • Save mmouih/7df96d13137dda34670c8ef402645817 to your computer and use it in GitHub Desktop.
Save mmouih/7df96d13137dda34670c8ef402645817 to your computer and use it in GitHub Desktop.
Payment processor autoconfigured with an attribute
<?php
namespace App\Domain\Payment;
use App\Entity\Client;
#[AutoconfigureTag]
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