mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-08 02:24:26 +00:00
11 lines
195 B
PHP
11 lines
195 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\Webhook;
|
|
|
|
use Alchemy\Phrasea\Model\Entities\WebhookEvent;
|
|
|
|
interface WebhookPublisherInterface
|
|
{
|
|
public function publishWebhookEvent(WebhookEvent $event);
|
|
}
|