11 lines
186 B
PHP
Executable File
11 lines
186 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Ship\Abstracts\Broadcasting;
|
|
|
|
use Illuminate\Broadcasting\PrivateChannel as LaravelPrivateChannel;
|
|
|
|
abstract class PrivateChannel extends LaravelPrivateChannel
|
|
{
|
|
|
|
}
|