• File: EncryptedPrivateChannel.php
  • Full Path: /home/masbinta/public_html/core/vendor/laravel/framework/src/Illuminate/Broadcasting/EncryptedPrivateChannel.php
  • File size: 311 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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);
    }
}