Files
Phraseanet/lib/Alchemy/Phrasea/Webhook/Processor/ProcessorInterface.php
2015-10-20 17:45:16 +02:00

11 lines
186 B
PHP

<?php
namespace Alchemy\Phrasea\Webhook\Processor;
use Alchemy\Phrasea\Model\Entities\WebhookEvent;
interface ProcessorInterface
{
public function process(WebhookEvent $event);
}