laravel-websockets/src/WebSocket/Pusher/Exceptions/InvalidConnection.php

13 lines
249 B
PHP

<?php
namespace BeyondCode\LaravelWebSockets\WebSocket\Pusher\Exceptions;
class InvalidConnection extends PusherException
{
public function __construct()
{
$this->message = 'Invalid Connection';
$this->code = 4009;
}
}