mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-10 11:33:17 +00:00
16 lines
263 B
PHP
16 lines
263 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\Webhook\Processor;
|
|
|
|
class UserProcessorFactory implements ProcessorFactory
|
|
{
|
|
|
|
/**
|
|
* @return ProcessorInterface|UserProcessor
|
|
*/
|
|
public function createProcessor()
|
|
{
|
|
return new UserProcessor();
|
|
}
|
|
}
|