HighSpeaker/vendor/illuminate/contracts/Broadcasting/Factory.php

15 lines
289 B
PHP
Raw Normal View History

2022-12-24 19:40:40 +05:30
<?php
namespace Illuminate\Contracts\Broadcasting;
interface Factory
{
/**
* Get a broadcaster implementation by name.
*
* @param string|null $name
* @return \Illuminate\Contracts\Broadcasting\Broadcaster
*/
public function connection($name = null);
}