Factory.php 247B

123456789101112131415
  1. <?php
  2. namespace Illuminate\Contracts\Broadcasting;
  3. interface Factory
  4. {
  5. /**
  6. * Get a broadcaster implementation by name.
  7. *
  8. * @param string|null $name
  9. * @return void
  10. */
  11. public function connection($name = null);
  12. }