for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php /** MicroRedisQueue */
namespace Micro\Queue\Drivers;
use Micro\Queue\Adapter;
/**
* RedisQueue class file.
*
* @author Oleg Lunegov <[email protected]>
* @link https://github.com/linpax/microphp-framework
* @copyright Copyright (c) 2013 Oleg Lunegov
* @license https://github.com/linpax/microphp-framework/blob/master/LICENSE
* @package Micro
* @subpackage Queue
* @version 1.0
* @since 1.0
*/
class RedisQueue implements Adapter
{
* Constructor Queues
* @access public
* @param array $params Configuration array
* @result void
public function __construct(array $params = [])
// TODO: Implement __construct() method.
}
* @inheritdoc
public function test()
return true;
public function sync($name, array $params = [])
return 'Hello, world!';
public function async($name, array $params = [])
// TODO: Implement async() method.
public function stream($name, array $params = [])
// TODO: Implement stream() method.