Files
pancake/system/vendor/illuminate/contracts/Broadcasting/Factory.php
Tim Bendt 6b9ef7ca55 first
2025-11-25 00:16:35 -05:00

15 lines
289 B
PHP
Executable File

<?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);
}