• File: channel.stub
  • Full Path: /home/masbinta/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/channel.stub
  • File size: 451 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace {{ namespace }};

use {{ namespacedUserModel }};

class {{ class }}
{
    /**
     * Create a new channel instance.
     *
     * @return void
     */
    public function __construct()
    {
        //
    }

    /**
     * Authenticate the user's access to the channel.
     *
     * @param  \{{ namespacedUserModel }}  $user
     * @return array|bool
     */
    public function join({{ userModel }} $user)
    {
        //
    }
}