<?php
namespace IlluminateContractsBroadcasting;
interface Factory
{
/**
* Get a broadcaster implementation by name.
*
* @param string|null $name
* @return IlluminateContractsBroadcastingBroadcaster
*/
public function connection($name = null);
}