laravel-websockets/src/LaravelEcho/Pusher/Exceptions/InvalidSignature.php

13 lines
249 B
PHP

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