Mirocow/yii2-queue

View on GitHub
interfaces/QueueInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace mirocow\queue\interfaces;

/**
 * QueueInterface
 *
 * @author Alexander Kochetov <creocoder@gmail.com>
 */
interface QueueInterface
{

    /**
     * Get channel object
     *
     * @param string $name
     */
    public function getChannel($name = 'default');
    
    
}