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