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

12 lines
257 B
PHP

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