Files
faveo/vendor/laravel/framework/src/Illuminate/Broadcasting/EncryptedPrivateChannel.php
RafficMohammed 774eed8b0e laravel-6 support
2023-01-08 01:17:22 +05:30

18 lines
311 B
PHP

<?php
namespace Illuminate\Broadcasting;
class EncryptedPrivateChannel extends Channel
{
/**
* Create a new channel instance.
*
* @param string $name
* @return void
*/
public function __construct($name)
{
parent::__construct('private-encrypted-'.$name);
}
}