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

12 lines
257 B
PHP
Raw Normal View History

2018-11-22 09:54:51 +00:00
<?php
namespace BeyondCode\LaravelWebSockets\LaravelEcho\Pusher\Exceptions;
class InvalidSignatureException extends PusherException
{
public function __construct()
{
$this->message = 'Invalid Signature';
$this->code = 4009;
}
}