PHRAS-1239 Add webhook for user deleted events

This commit is contained in:
Thibaud Fabre
2016-09-28 18:31:20 +02:00
parent f265cd4383
commit b71a7a93b5
5 changed files with 121 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?php
/*
* This file is part of phrasea-4.0.
*
* (c) Alchemy <info@alchemy.fr>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Alchemy\Phrasea\Webhook\Processor;
class UserDeletedProcessorFactory implements ProcessorFactory
{
/**
* @return ProcessorInterface
*/
public function createProcessor()
{
return new UserDeletedProcessor();
}
}