Skip to content

Instantly share code, notes, and snippets.

@mmouih
Created January 5, 2024 00:23
Show Gist options
  • Save mmouih/ac153523baece8e96884c350e62239d7 to your computer and use it in GitHub Desktop.
Save mmouih/ac153523baece8e96884c350e62239d7 to your computer and use it in GitHub Desktop.
Handlers Interface
<?php
namespace App\Handler;
use App\Payload\PayloadInterface;
interface HandlerInterface
{
public function handle(PayloadInterface $payload);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment