14 lines
239 B
PHP
14 lines
239 B
PHP
|
<?php namespace Illuminate\Contracts\Queue;
|
||
|
|
||
|
interface Factory {
|
||
|
|
||
|
/**
|
||
|
* Resolve a queue connection instance.
|
||
|
*
|
||
|
* @param string $name
|
||
|
* @return \Illuminate\Contracts\Queue\Queue
|
||
|
*/
|
||
|
public function connection($name = null);
|
||
|
|
||
|
}
|