lightster/hodor

View on GitHub
src/Hodor/Database/Adapter/BufferWorkerInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Hodor\Database\Adapter;

interface BufferWorkerInterface
{
    /**
     * @param string $queue_name
     * @param array $job
     */
    public function bufferJob($queue_name, array $job);
}