mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-08 10:34:34 +00:00
12 lines
173 B
PHP
12 lines
173 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\Webhook\Processor;
|
|
|
|
interface ProcessorFactory
|
|
{
|
|
/**
|
|
* @return ProcessorInterface
|
|
*/
|
|
public function createProcessor();
|
|
}
|