2018-11-05 09:26:30 +08:00

15 lines
242 B
PHP

<?php
namespace Illuminate\Contracts\Broadcasting;
interface Factory
{
/**
* Get a broadcaster implementation by name.
*
* @param string $name
* @return void
*/
public function connection($name = null);
}