Skip to content

Commit 8215e0d

Browse files
committed
add file
1 parent ceabaef commit 8215e0d

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
namespace Illuminate\Broadcasting;
4+
5+
class EncryptedPrivateChannel extends Channel
6+
{
7+
/**
8+
* Create a new channel instance.
9+
*
10+
* @param string $name
11+
* @return void
12+
*/
13+
public function __construct($name)
14+
{
15+
parent::__construct('private-encrypted-'.$name);
16+
}
17+
}

0 commit comments

Comments
 (0)