mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-12 20:43:25 +00:00
12 lines
197 B
PHP
12 lines
197 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\WorkerManager\Worker;
|
|
|
|
interface WorkerInterface
|
|
{
|
|
/**
|
|
* @param array $payload
|
|
* @return mixed
|
|
*/
|
|
public function process(array $payload);
|
|
} |