add user.created webhook, merge user type

This commit is contained in:
aynsix
2021-11-17 17:55:10 +03:00
parent 419d74b120
commit 62f751d886
9 changed files with 75 additions and 33 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace Alchemy\Phrasea\Webhook\Processor;
class UserProcessorFactory implements ProcessorFactory
{
/**
* @return ProcessorInterface|UserProcessor
*/
public function createProcessor()
{
return new UserProcessor();
}
}